From 4f10ccc8debf7160a99562334ec04cff2040641e Mon Sep 17 00:00:00 2001 From: xaliciayang Date: Thu, 13 Feb 2020 18:02:49 -0800 Subject: [PATCH 01/61] adding files for LTR MI Powershell tests --- ...ackupLongTermRetentionPolicyCmdletBase.cs} | 33 +- ...tabaseLongTermRetentionBackupCmdletBase.cs | 39 +++ ...edDatabaseBackupLongTermRetentionPolicy.cs | 67 +++++ ...lManagedDatabaseLongTermRetentionBackup.cs | 282 ++++++++++++++++++ ...lManagedDatabaseLongTermRetentionBackup.cs | 236 +++++++++++++++ ...edDatabaseBackupLongTermRetentionPolicy.cs | 197 ++++++++++++ ...abaseBackupLongTermRetentionPolicyModel.cs | 82 +++++ ...gedDatabaseLongTermRetentionBackupModel.cs | 75 +++++ .../AzureSqlManagedDatabaseBackupAdapter.cs | 145 +++++++++ ...ureSqlManagedDatabaseBackupCommunicator.cs | 20 ++ .../Cmdlet/RestoreAzureSqlManagedDatabase.cs | 33 +- 11 files changed, 1197 insertions(+), 12 deletions(-) rename src/Sql/Sql/{Database Backup/Cmdlet/AzureSqlServerBackupLongTermRetentionVaultCmdletBase.cs => ManagedDatabase Backup/Cmdlet/AzureSqlManagedDatabaseBackupLongTermRetentionPolicyCmdletBase.cs} (51%) create mode 100644 src/Sql/Sql/ManagedDatabase Backup/Cmdlet/AzureSqlManagedDatabaseLongTermRetentionBackupCmdletBase.cs create mode 100644 src/Sql/Sql/ManagedDatabase Backup/Cmdlet/GetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy.cs create mode 100644 src/Sql/Sql/ManagedDatabase Backup/Cmdlet/GetAzureSqlManagedDatabaseLongTermRetentionBackup.cs create mode 100644 src/Sql/Sql/ManagedDatabase Backup/Cmdlet/RemoveAzureSqlManagedDatabaseLongTermRetentionBackup.cs create mode 100644 src/Sql/Sql/ManagedDatabase Backup/Cmdlet/SetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy.cs create mode 100644 src/Sql/Sql/ManagedDatabase Backup/Model/AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel.cs create mode 100644 src/Sql/Sql/ManagedDatabase Backup/Model/AzureSqlManagedDatabaseLongTermRetentionBackupModel.cs diff --git a/src/Sql/Sql/Database Backup/Cmdlet/AzureSqlServerBackupLongTermRetentionVaultCmdletBase.cs b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/AzureSqlManagedDatabaseBackupLongTermRetentionPolicyCmdletBase.cs similarity index 51% rename from src/Sql/Sql/Database Backup/Cmdlet/AzureSqlServerBackupLongTermRetentionVaultCmdletBase.cs rename to src/Sql/Sql/ManagedDatabase Backup/Cmdlet/AzureSqlManagedDatabaseBackupLongTermRetentionPolicyCmdletBase.cs index 09820b61edf2..46523d56391c 100644 --- a/src/Sql/Sql/Database Backup/Cmdlet/AzureSqlServerBackupLongTermRetentionVaultCmdletBase.cs +++ b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/AzureSqlManagedDatabaseBackupLongTermRetentionPolicyCmdletBase.cs @@ -15,37 +15,48 @@ using System.Collections.Generic; using System.Management.Automation; using Microsoft.Azure.Commands.Common.Authentication.Models; -using Microsoft.Azure.Commands.Sql.Backup.Model; -using Microsoft.Azure.Commands.Sql.Backup.Services; +using Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model; +using Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Services; using Microsoft.Azure.Commands.Sql.Common; using Microsoft.Azure.Commands.Sql.Database.Model; using Microsoft.Azure.Commands.Sql.Database.Services; using Microsoft.Azure.Commands.Common.Authentication.Abstractions; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -namespace Microsoft.Azure.Commands.Sql.Backup.Cmdlet +namespace Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Cmdlet { - public abstract class AzureSqlServerBackupLongTermRetentionVaultCmdletBase : - AzureSqlCmdletBase, AzureSqlDatabaseBackupAdapter> + public abstract class AzureSqlManagedDatabaseBackupLongTermRetentionPolicyCmdletBase : + AzureSqlCmdletBase, AzureSqlManagedDatabaseBackupAdapter> { /// - /// Gets or sets the name of the database server to use. + /// Gets or sets the name of the managed instance to use. /// [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, Position = 1, - HelpMessage = "The name of the Azure SQL Server the database is in.")] - [ResourceNameCompleter("Microsoft.Sql/servers", "ResourceGroupName")] + HelpMessage = "The name of the Azure Managed Instance the database belongs to.")] + [ResourceNameCompleter("Microsoft.Sql/managedInstance", "ResourceGroupName")] [ValidateNotNullOrEmpty] - public string ServerName { get; set; } + public string ManagedInstanceName { get; set; } + + /// + /// Gets or sets the name of the managed database to use. + /// + [Parameter(Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 2, + HelpMessage = "The name of the Azure Managed Database to use.")] + [ResourceNameCompleter("Microsoft.Sql/managedInstances/databases", "ResourceGroupName", "ManagedInstanceName")] + [ValidateNotNullOrEmpty] + public string DatabaseName { get; set; } /// /// Initializes the adapter /// /// - protected override AzureSqlDatabaseBackupAdapter InitModelAdapter() + protected override AzureSqlManagedDatabaseBackupAdapter InitModelAdapter() { - return new AzureSqlDatabaseBackupAdapter(DefaultProfile.DefaultContext); + return new AzureSqlManagedDatabaseBackupAdapter(DefaultProfile.DefaultContext); } } } diff --git a/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/AzureSqlManagedDatabaseLongTermRetentionBackupCmdletBase.cs b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/AzureSqlManagedDatabaseLongTermRetentionBackupCmdletBase.cs new file mode 100644 index 000000000000..7568dc01fdf5 --- /dev/null +++ b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/AzureSqlManagedDatabaseLongTermRetentionBackupCmdletBase.cs @@ -0,0 +1,39 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.Common.Authentication.Models; +using Microsoft.Azure.Commands.Sql.Common; +using Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model; +using Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Services; +using Microsoft.Azure.Commands.Sql.ManagedDatabase.Model; +using Microsoft.Azure.Commands.Sql.ManagedDatabase.Services; +using Microsoft.Azure.Commands.Common.Authentication.Abstractions; + +namespace Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Cmdlet +{ + public abstract class AzureSqlManagedDatabaseLongTermRetentionBackupCmdletBase : + AzureSqlCmdletBase, AzureSqlManagedDatabaseBackupAdapter> + { + /// + /// Initializes the adapter + /// + /// + protected override AzureSqlManagedDatabaseBackupAdapter InitModelAdapter() + { + return new AzureSqlManagedDatabaseBackupAdapter(DefaultProfile.DefaultContext); + } + } +} diff --git a/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/GetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy.cs b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/GetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy.cs new file mode 100644 index 000000000000..7c8cf722dbc8 --- /dev/null +++ b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/GetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy.cs @@ -0,0 +1,67 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Linq; +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model; +using Microsoft.Azure.Commands.Sql.Database.Model; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; + +namespace Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Cmdlet +{ + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlManagedDatabaseBackupLongTermRetentionPolicy", + SupportsShouldProcess = true), + OutputType(typeof(AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel))] + [Alias("Get-" + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlManagedDatabaseLongTermRetentionPolicy")] + public class GetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy : AzureSqlManagedDatabaseBackupLongTermRetentionPolicyCmdletBase + { + /// + /// Get the entities from the service + /// + /// The list of entities + protected override IEnumerable GetEntity() + { + return new List() + { + ModelAdapter.GetManagedDatabaseBackupLongTermRetentionPolicy( + this.ResourceGroupName, + this.ManagedInstanceName, + this.DatabaseName) + }; + } + + /// + /// No user input to apply to model + /// + /// Model retrieved from service + /// The model that was passed in + protected override IEnumerable ApplyUserInputToModel( + IEnumerable model) + { + return model; + } + + /// + /// No changes to persist to server + /// + /// The output of apply user input to model + /// The input entity + protected override IEnumerable PersistChanges( + IEnumerable entity) + { + return entity; + } + } +} diff --git a/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/GetAzureSqlManagedDatabaseLongTermRetentionBackup.cs b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/GetAzureSqlManagedDatabaseLongTermRetentionBackup.cs new file mode 100644 index 000000000000..a963f2e43a75 --- /dev/null +++ b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/GetAzureSqlManagedDatabaseLongTermRetentionBackup.cs @@ -0,0 +1,282 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Linq; +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model; +using Microsoft.Azure.Commands.Sql.Database.Model; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + +namespace Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Cmdlet +{ + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlManagedDatabaseLongTermRetentionBackup", DefaultParameterSetName = LocationSet, SupportsShouldProcess = true), OutputType(typeof(AzureSqlManagedDatabaseLongTermRetentionBackupModel))] + public class GetAzureSqlManagedDatabaseLongTermRetentionBackup : AzureSqlManagedDatabaseLongTermRetentionBackupCmdletBase + { + /// + /// Parameter set name for backup name. + /// + private const string BackupNameSet = "BackupName"; + + /// + /// Parameter set name for server name. + /// + private const string ServerNameSet = "ServerName"; + + /// + /// Parameter set name for location name. + /// + private const string LocationSet = "Location"; + + /// + /// Parameter set for using a Database Input Object when getting a single backup. + /// + private const string GetBackupByInputObjectSet = "GetBackupByInputObject"; + + /// + /// Parameter set for using a Database Input Object when getting multiple backups. + /// + private const string GetBackupsByInputObjectSet = "GetBackupsByInputObject"; + + /// + /// Parameter set for using a Database Resource ID when getting a single backup. + /// + private const string GetBackupByResourceIdSet = "GetBackupByResourceId"; + + /// + /// Parameter set for using a Database Resource ID when getting multiple backups. + /// + private const string GetBackupsByResourceIdSet = "GetBackupsByResourceId"; + + /// + /// The location the backups are in. + /// + [Parameter(Mandatory = true, + ParameterSetName = LocationSet, + Position = 0, + HelpMessage = "The location of the backups' source server.")] + [Parameter(Mandatory = true, + ParameterSetName = ServerNameSet, + Position = 0, + HelpMessage = "The location of the backups' source server.")] + [Parameter(Mandatory = true, + ParameterSetName = BackupNameSet, + Position = 0, + HelpMessage = "The location of the backups' source server.")] + [Parameter(Mandatory = true, + ParameterSetName = GetBackupByResourceIdSet, + Position = 1, + HelpMessage = "The location of the backups' source server.")] + [Parameter(Mandatory = true, + ParameterSetName = GetBackupsByResourceIdSet, + Position = 1, + HelpMessage = "The location of the backups' source server.")] + [LocationCompleter("Microsoft.Sql/locations/longTermRetentionServers/longTermRetentionDatabases/longTermRetentonBackups")] + public string Location { get; set; } + + /// + /// Gets or sets the Database object to get backups for. + /// + [Parameter(ParameterSetName = GetBackupByInputObjectSet, + Mandatory = true, + Position = 0, + ValueFromPipeline = true, + HelpMessage = "The database object to get backups for.")] + [Parameter(ParameterSetName = GetBackupsByInputObjectSet, + Mandatory = true, + Position = 0, + ValueFromPipeline = true, + HelpMessage = "The database object to get backups for.")] + [ValidateNotNullOrEmpty] + public AzureSqlDatabaseModel InputObject { get; set; } + + /// + /// Gets or sets the Database Resource ID to get backups for. + /// + [Parameter(Mandatory = true, + ParameterSetName = GetBackupByResourceIdSet, + Position = 0, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The database Resource ID to get backups for.")] + [Parameter(Mandatory = true, + ParameterSetName = GetBackupsByResourceIdSet, + Position = 0, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The database Resource ID to get backups for.")] + public string ResourceId { get; set; } + + /// + /// Gets or sets the name of the server. + /// + [Parameter(Mandatory = true, + ParameterSetName = ServerNameSet, + Position = 1, + HelpMessage = "The name of the Azure SQL Server the backups are under.")] + [Parameter(Mandatory = true, + ParameterSetName = BackupNameSet, + Position = 1, + HelpMessage = "The name of the Azure SQL Server the backups are under.")] + [ResourceNameCompleter("Microsoft.Sql/servers", "ResourceGroupName")] + [ValidateNotNullOrEmpty] + public string ServerName { get; set; } + + /// + /// Gets or sets the name of the database. + /// + [Parameter(Mandatory = false, + ParameterSetName = ServerNameSet, + HelpMessage = "The name of the Azure SQL Server the backups are under.")] + [Parameter(Mandatory = true, + ParameterSetName = BackupNameSet, + Position = 2, + HelpMessage = "The name of the Azure SQL Database the backup is from.")] + [ResourceNameCompleter("Microsoft.Sql/servers/databases", "ResourceGroupName", "ServerName")] + [ValidateNotNullOrEmpty] + public string DatabaseName { get; set; } + + /// + /// Gets or sets the backup name. + /// + [Parameter(Mandatory = true, + ParameterSetName = BackupNameSet, + ValueFromPipelineByPropertyName = true, + Position = 3, + HelpMessage = "The name of the backup.")] + [Parameter(Mandatory = true, + ParameterSetName = GetBackupByInputObjectSet, + ValueFromPipelineByPropertyName = true, + Position = 1, + HelpMessage = "The name of the backup.")] + [Parameter(Mandatory = true, + ParameterSetName = GetBackupByResourceIdSet, + ValueFromPipelineByPropertyName = true, + Position = 1, + HelpMessage = "The name of the backup.")] + [ValidateNotNullOrEmpty] + [SupportsWildcards] + public string BackupName { get; set; } + + /// + /// Gets or sets the name of the resource group to use. + /// + [Parameter(Mandatory = false, + ParameterSetName = LocationSet, + HelpMessage = "The name of the resource group.")] + [Parameter(Mandatory = false, + ParameterSetName = ServerNameSet, + HelpMessage = "The name of the resource group.")] + [Parameter(Mandatory = false, + ParameterSetName = BackupNameSet, + HelpMessage = "The name of the resource group.")] + [ResourceGroupCompleter] + public override string ResourceGroupName { get; set; } + + /// + /// Gets or sets whether or not to only get the latest backup per database. + /// + [Parameter(Mandatory = false, + ParameterSetName = ServerNameSet, + HelpMessage = "Whether or not to only get the latest backup per database. Defaults to false.")] + [Parameter(Mandatory = false, + ParameterSetName = LocationSet, + HelpMessage = "Whether or not to only get the latest backup per database. Defaults to false.")] + [Parameter(Mandatory = false, + ParameterSetName = GetBackupsByInputObjectSet, + HelpMessage = "Whether or not to only get the latest backup per database. Defaults to false.")] + [Parameter(Mandatory = false, + ParameterSetName = GetBackupsByResourceIdSet, + HelpMessage = "Whether or not to only get the latest backup per database. Defaults to false.")] + [ValidateNotNullOrEmpty] + public SwitchParameter OnlyLatestPerDatabase { get; set; } + + /// + /// Gets or sets the database state to look for (Alive or Deleted). + /// + [Parameter(Mandatory = false, + ParameterSetName = ServerNameSet, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The state of the database whose backups you want to find, Alive, Deleted, or All. Defaults to All")] + [Parameter(Mandatory = false, + ParameterSetName = LocationSet, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The state of the database whose backups you want to find, Alive, Deleted, or All. Defaults to All")] + [Parameter(Mandatory = false, + ParameterSetName = GetBackupsByInputObjectSet, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The state of the database whose backups you want to find, Alive, Deleted, or All. Defaults to All")] + [Parameter(Mandatory = false, + ParameterSetName = GetBackupsByResourceIdSet, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The state of the database whose backups you want to find, Alive, Deleted, or All. Defaults to All")] + [ValidateNotNullOrEmpty] + [ValidateSet(Management.Sql.Models.LongTermRetentionDatabaseState.All, Management.Sql.Models.LongTermRetentionDatabaseState.Deleted, Management.Sql.Models.LongTermRetentionDatabaseState.Live, + IgnoreCase = true)] + public string DatabaseState { get; set; } + + /// + /// Get the entities from the service + /// + /// The list of entities + protected override IEnumerable GetEntity() + { + if (InputObject != null) + { + Location = InputObject.Location; + ServerName = InputObject.ServerName; + DatabaseName = InputObject.DatabaseName; + ResourceGroupName = InputObject.ResourceGroupName; + } + else if (!string.IsNullOrWhiteSpace(ResourceId)) + { + ResourceIdentifier identifier = new ResourceIdentifier(ResourceId); + DatabaseName = identifier.ResourceName; + ResourceGroupName = identifier.ResourceGroupName; + ServerName = identifier.ParentResource.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries)[1]; + } + + return SubResourceWildcardFilter(BackupName, ModelAdapter.GetManagedDatabaseLongTermRetentionBackups( + Location, + ServerName, + DatabaseName, + BackupName, + ResourceGroupName, + OnlyLatestPerDatabase.IsPresent, + DatabaseState)); + } + + /// + /// No user input to apply to model + /// + /// Model retrieved from service + /// The model that was passed in + protected override IEnumerable ApplyUserInputToModel( + IEnumerable model) + { + return model; + } + + /// + /// No changes to persist to server + /// + /// The output of apply user input to model + /// The input entity + protected override IEnumerable PersistChanges( + IEnumerable entity) + { + return entity; + } + } +} diff --git a/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/RemoveAzureSqlManagedDatabaseLongTermRetentionBackup.cs b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/RemoveAzureSqlManagedDatabaseLongTermRetentionBackup.cs new file mode 100644 index 000000000000..3fcfcf24cdf4 --- /dev/null +++ b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/RemoveAzureSqlManagedDatabaseLongTermRetentionBackup.cs @@ -0,0 +1,236 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Linq; +using System.Collections.Generic; +using System.Management.Automation; +using System.Globalization; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.Sql.Database.Model; +using Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + +namespace Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Cmdlet +{ + [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlManagedDatabaseLongTermRetentionBackup", DefaultParameterSetName = RemoveBackupDefaultSet, SupportsShouldProcess = true), OutputType(typeof(AzureSqlManagedDatabaseLongTermRetentionBackupModel))] + public class RemoveAzureSqlManagedDatabaseLongTermRetentionBackup : AzureSqlManagedDatabaseLongTermRetentionBackupCmdletBase + { + /// + /// Parameter set name for the default remove. + /// + private const string RemoveBackupDefaultSet = "RemoveBackupDefault"; + + /// + /// Parameter set name for remove with an input object. + /// + private const string RemoveBackupByInputObjectSet = "RemoveBackupByInputObject"; + + /// + /// Parameter set name for remove with a resource ID. + /// + private const string RemoveBackupByResourceIdSet = "RemoveBackupByResourceId"; + + /// + /// Gets or sets the name of the location the backup is in. + /// + [Parameter(Mandatory = true, + ParameterSetName = RemoveBackupDefaultSet, + Position = 0, + HelpMessage = "The location of the backups' source server.")] + [ValidateNotNullOrEmpty] + [LocationCompleter("Microsoft.Sql/locations/longTermRetentionServers")] + public virtual string Location { get; set; } + + /// + /// Gets or sets the name of the server. + /// + [Parameter(Mandatory = true, + ParameterSetName = RemoveBackupDefaultSet, + Position = 1, + HelpMessage = "The name of the Managed Instance the backup is under.")] + [ResourceNameCompleter("Microsoft.Sql/servers", "ResourceGroupName")] + [ValidateNotNullOrEmpty] + public string ManagedInstanceName { get; set; } + + /// + /// Gets or sets the name of the database. + /// + [Parameter(Mandatory = true, + ParameterSetName = RemoveBackupDefaultSet, + Position = 2, + HelpMessage = "The name of the Managed Database the backup is from.")] + [ResourceNameCompleter("Microsoft.Sql/servers/databases", "ResourceGroupName", "ServerName")] + [ValidateNotNullOrEmpty] + public string DatabaseName { get; set; } + + /// + /// Gets or sets the LTR Backup object to remove. + /// + [Parameter(ParameterSetName = RemoveBackupByInputObjectSet, + Mandatory = true, + Position = 0, + ValueFromPipeline = true, + HelpMessage = "The Database Long Term Retention Backup object to remove.")] + [ValidateNotNullOrEmpty] + public AzureSqlManagedDatabaseLongTermRetentionBackupModel InputObject { get; set; } + + /// + /// Gets or sets the resource ID of the LTR Backup to remove. + /// + [Parameter(ParameterSetName = RemoveBackupByResourceIdSet, + Mandatory = true, + Position = 0, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The Resource ID of the Database Long Term Retention Backup to remove.")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + /// + /// Gets or sets the backup name. + /// + [Parameter(Mandatory = true, + ParameterSetName = RemoveBackupDefaultSet, + ValueFromPipelineByPropertyName = true, + Position = 3, + HelpMessage = "The name of the backup.")] + [ValidateNotNullOrEmpty] + public string BackupName { get; set; } + + /// + /// Gets or sets the name of the resource group to use. + /// + [Parameter(Mandatory = false, + ParameterSetName = RemoveBackupDefaultSet, + HelpMessage = "The name of the resource group.")] + [ResourceGroupCompleter] + public override string ResourceGroupName { get; set; } + + /// + /// Defines whether it is ok to skip the requesting of rule removal confirmation + /// + [Parameter(HelpMessage = "Skip confirmation message for performing the action")] + public SwitchParameter Force { get; set; } + + /// + /// Defines whether the cmdlets will output the model object at the end of its execution + /// + public SwitchParameter PassThru { get; set; } + + /// + /// Returns true if the model object that was constructed by this cmdlet should be written out + /// + protected override bool WriteResult() { return PassThru; } + + /// + /// Get the entities from the service + /// + /// The list of entities + protected override IEnumerable GetEntity() + { + return ModelAdapter.GetManagedDatabaseLongTermRetentionBackups( + Location, + ManagedInstanceName, + DatabaseName, + BackupName, + ResourceGroupName, + null, + null); + } + + /// + /// No user input to apply to model + /// + /// Model retrieved from service + /// The model that was passed in + protected override IEnumerable ApplyUserInputToModel( + IEnumerable model) + { + return model; + } + + /// + /// No changes to persist to server + /// + /// The output of apply user input to model + /// The input entity + protected override IEnumerable PersistChanges( + IEnumerable entity) + { + ModelAdapter.RemoveManagedDatabaseLongTermRetentionBackup(Location, ManagedInstanceName, DatabaseName, BackupName, ResourceGroupName); + return entity; + } + + /// + /// Entry point for the cmdlet + /// + public override void ExecuteCmdlet() + { + if (InputObject != null) + { + Location = InputObject.Location; + ManagedInstanceName = InputObject.ServerName; + DatabaseName = InputObject.DatabaseName; + BackupName = InputObject.BackupName; + ResourceGroupName = InputObject.ResourceGroupName; + } + else if (!string.IsNullOrWhiteSpace(ResourceId)) + { + ParseLongTermRentionBackupResourceId(ResourceId); + } + + if (ShouldProcess(this.BackupName)) + { + if (Force.IsPresent || ShouldContinue( + string.Format(CultureInfo.InvariantCulture, Properties.Resources.RemoveAzureSqlDatabaseLongTermRetentionBackupDescription, this.BackupName, this.DatabaseName, this.ManagedInstanceName, this.Location), + string.Format(CultureInfo.InvariantCulture, Properties.Resources.RemoveAzureSqlDatabaseLongTermRetentionBackupWarning, this.BackupName, this.DatabaseName, this.ManagedInstanceName, this.Location))) + { + base.ExecuteCmdlet(); + } + } + } + + /// + /// Parse the longTermRetentionBackup resource Id + /// + /// + private void ParseLongTermRentionBackupResourceId(string resourceId) + { + int offset = 0; + string[] tokens = resourceId.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries); + if (tokens.Length == 14 || tokens.Length == 12) + { + if (tokens.Length == 14) + { + ResourceGroupName = tokens[3]; + offset = 2; + } + else + { + ResourceGroupName = null; + } + + Location = tokens[5 + offset]; + ManagedInstanceName = tokens[7 + offset]; + DatabaseName = tokens[9 + offset]; + BackupName = tokens[11 + offset]; + } + else + { + throw new ArgumentException("Invalid parameter", "ResourceId"); + + } + } + } +} diff --git a/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/SetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy.cs b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/SetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy.cs new file mode 100644 index 000000000000..2cb5142b25d5 --- /dev/null +++ b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/SetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy.cs @@ -0,0 +1,197 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections.Generic; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Sql.Database.Model; +using Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; + +namespace Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Cmdlet +{ + /// + /// Cmdlet to create or update a new Azure Sql Database backup archival policy + /// + [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlManagedDatabaseBackupLongTermRetentionPolicy", + DefaultParameterSetName = WeeklyRetentionRequiredSet, SupportsShouldProcess = true, + ConfirmImpact = ConfirmImpact.Low), + OutputType(typeof(AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel))] + [Alias("Set-" + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlManagedDatabaseLongTermRetentionPolicy")] + public class SetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy : AzureSqlManagedDatabaseBackupLongTermRetentionPolicyCmdletBase + { + /// + /// Parameter set name for Weekly Retention. + /// + private const string WeeklyRetentionRequiredSet = "WeeklyRetentionRequired"; + + /// + /// Parameter set name for Monthly Retention. + /// + private const string MonthlyRetentionRequiredSet = "MonthlyRetentionRequired"; + + /// + /// Parameter set name for Yearly Retention. + /// + private const string YearlyRetentionRequiredSet = "YearlyRetentionRequired"; + + /// + /// Parameter set for clearing the long term retention V2 policy. + /// + private const string RemovePolicySet = "RemovePolicy"; + + /// + /// Gets or sets whether or not to clear the Long Term Retention V2 policy. + /// + [Parameter(Mandatory = true, + ParameterSetName = RemovePolicySet, + HelpMessage = "If provided, the policy for the database will be cleared.")] + public SwitchParameter RemovePolicy { get; set; } + + /// + /// Gets or sets the Weekly Retention. + /// + [Parameter(Mandatory = true, + ParameterSetName = WeeklyRetentionRequiredSet, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The Weekly Retention. If just a number is passed instead of an ISO 8601 string, days will be assumed as the units. There is a minimum of 7 days and a maximum of 10 years.")] + [Parameter(Mandatory = false, + ParameterSetName = MonthlyRetentionRequiredSet, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The Weekly Retention. If just a number is passed instead of an ISO 8601 string, days will be assumed as the units. There is a minimum of 7 days and a maximum of 10 years.")] + [Parameter(Mandatory = false, + ParameterSetName = YearlyRetentionRequiredSet, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The Weekly Retention. If just a number is passed instead of an ISO 8601 string, days will be assumed as the units. There is a minimum of 7 days and a maximum of 10 years.")] + [ValidateNotNullOrEmpty] + public string WeeklyRetention { get; set; } + + /// + /// Gets or sets the Monthly Retention. + /// + [Parameter(Mandatory = true, + ParameterSetName = MonthlyRetentionRequiredSet, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The Monthly Retention. If just a number is passed instead of an ISO 8601 string, days will be assumed as the units. There is a minimum of 7 days and a maximum of 10 years.")] + [Parameter(Mandatory = false, + ParameterSetName = YearlyRetentionRequiredSet, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The Monthly Retention. If just a number is passed instead of an ISO 8601 string, days will be assumed as the units. There is a minimum of 7 days and a maximum of 10 years.")] + [ValidateNotNullOrEmpty] + public string MonthlyRetention { get; set; } + + /// + /// Gets or sets the Yearly Retention. + /// + [Parameter(Mandatory = true, + ParameterSetName = YearlyRetentionRequiredSet, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The Yearly Retention. If just a number is passed instead of an ISO 8601 string, days will be assumed as the units. There is a minimum of 7 days and a maximum of 10 years.")] + [ValidateNotNullOrEmpty] + public string YearlyRetention { get; set; } + + /// + /// Gets or sets the Week of Year for the Yearly Retention. + /// + [Parameter(Mandatory = true, + ParameterSetName = YearlyRetentionRequiredSet, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The Week of Year, 1 to 52, to save for the Yearly Retention.")] + [ValidateNotNullOrEmpty] + public int WeekOfYear { get; set; } + + /// + /// Get the entities from the service + /// + /// The list of entities + protected override IEnumerable GetEntity() + { + return new List() + { + ModelAdapter.GetManagedDatabaseBackupLongTermRetentionPolicy( + this.ResourceGroupName, + this.ManagedInstanceName, + this.DatabaseName) + }; + } + + /// + /// Create the model from user input + /// + /// Model retrieved from service + /// The model that was passed in + protected override IEnumerable ApplyUserInputToModel(IEnumerable model) + { + int temp; + string retentionFormat = "P{0}D"; + if (int.TryParse(WeeklyRetention, out temp)) + { + WeeklyRetention = string.Format(retentionFormat, WeeklyRetention); + } + + if (int.TryParse(MonthlyRetention, out temp)) + { + MonthlyRetention = string.Format(retentionFormat, MonthlyRetention); + } + + if (int.TryParse(YearlyRetention, out temp)) + { + YearlyRetention = string.Format(retentionFormat, YearlyRetention); + } + + if (RemovePolicy.IsPresent) + { + WeeklyRetention = "P0D"; + MonthlyRetention = "P0D"; + YearlyRetention = "P0D"; + WeekOfYear = 1; + } + + return new List() + { + new AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel() + { + ResourceGroupName = ResourceGroupName, + ManagedInstanceName = ManagedInstanceName, + DatabaseName = DatabaseName, + Location = model.FirstOrDefault().Location, + WeeklyRetention = WeeklyRetention, + MonthlyRetention = MonthlyRetention, + YearlyRetention = YearlyRetention, + WeekOfYear = WeekOfYear + } + }; + } + + /// + /// Update the entity + /// + /// The output of apply user input to model + /// The input entity + protected override IEnumerable PersistChanges(IEnumerable entity) + { + if (ShouldProcess(DatabaseName)) + { + return new List() { + ModelAdapter.SetManagedDatabaseBackupLongTermRetentionPolicy(this.ResourceGroupName, this.ManagedInstanceName, this.DatabaseName, entity.First()) + }; + } + else + { + return null; + } + } + } +} diff --git a/src/Sql/Sql/ManagedDatabase Backup/Model/AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel.cs b/src/Sql/Sql/ManagedDatabase Backup/Model/AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel.cs new file mode 100644 index 000000000000..4bc81e743a1d --- /dev/null +++ b/src/Sql/Sql/ManagedDatabase Backup/Model/AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel.cs @@ -0,0 +1,82 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections.Generic; +using Microsoft.Azure.Management.Sql.Models; + +namespace Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model +{ + public class AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel + { + /// + /// Gets or sets the name of the resource group + /// + public string ResourceGroupName { get; set; } + + /// + /// Gets or sets the name of the instance + /// + public string ManagedInstanceName { get; set; } + + /// + /// Gets or sets the name of the database + /// + public string DatabaseName { get; set; } + + /// + /// Gets or sets the weekly retention + /// + public string WeeklyRetention { get; set; } + + /// + /// Gets or sets the monthly retention + /// + public string MonthlyRetention { get; set; } + + /// + /// Gets or sets the yearly retention + /// + public string YearlyRetention { get; set; } + + /// + /// Gets or sets the week of year for yearly retention + /// + public int? WeekOfYear { get; set; } + + /// + /// Gets or sets the location + /// + public string Location { get; set; } + + ///// + ///// Construct AzureSqlManagedDatabaseBackupShortTermRetentionPolicyModel object + ///// + ///// Resource group + ///// Managed Instance name + ///// Managed Instance name + ///// Managed Database object + ///// Deletion date of the database, if it is deleted + //public AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel(string resourceGroup, string managedInstanceName, string managedDatabaseName, string weeklyRetention, string monthlyRetention, string yearlyRetention, int? weekOfYear) + //{ + // ResourceGroupName = resourceGroup; + // ManagedInstanceName = managedInstanceName; + // DatabaseName = managedDatabaseName; + // WeeklyRetention = weeklyRetention; + // MonthlyRetention = monthlyRetention; + // YearlyRetention = yearlyRetention; + // WeekOfYear = weekOfYear; + //} + } +} diff --git a/src/Sql/Sql/ManagedDatabase Backup/Model/AzureSqlManagedDatabaseLongTermRetentionBackupModel.cs b/src/Sql/Sql/ManagedDatabase Backup/Model/AzureSqlManagedDatabaseLongTermRetentionBackupModel.cs new file mode 100644 index 000000000000..dd8bbeabb8d5 --- /dev/null +++ b/src/Sql/Sql/ManagedDatabase Backup/Model/AzureSqlManagedDatabaseLongTermRetentionBackupModel.cs @@ -0,0 +1,75 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model +{ + public class AzureSqlManagedDatabaseLongTermRetentionBackupModel + { + /// + /// Gets or sets the backup expiration time. + /// + public DateTime? BackupExpirationTime { get; set; } + + /// + /// Gets or sets the backup name. + /// + public string BackupName { get; set; } + + /// + /// Gets or sets the backup time. + /// + public DateTime? BackupTime { get; set; } + + /// + /// Gets or sets the database name. + /// + public string DatabaseName { get; set; } + + /// + /// Gets or sets the database deletion time. + /// + public DateTime? DatabaseDeletionTime { get; set; } + + /// + /// Gets or sets the location name. + /// + public string Location { get; set; } + + /// + /// Gets or sets the resource ID. + /// + public string ResourceId { get; set; } + + /// + /// Gets or sets the server name. + /// + public string ServerName { get; set; } + + /// + /// Gets or sets the server create time. + /// + public DateTime? ServerCreateTime { get; set; } + + /// + /// Gets or sets the resource group name. + /// + public string ResourceGroupName { get; set; } + } +} diff --git a/src/Sql/Sql/ManagedDatabase Backup/Services/AzureSqlManagedDatabaseBackupAdapter.cs b/src/Sql/Sql/ManagedDatabase Backup/Services/AzureSqlManagedDatabaseBackupAdapter.cs index 9f393a8d0660..93b38548d293 100644 --- a/src/Sql/Sql/ManagedDatabase Backup/Services/AzureSqlManagedDatabaseBackupAdapter.cs +++ b/src/Sql/Sql/ManagedDatabase Backup/Services/AzureSqlManagedDatabaseBackupAdapter.cs @@ -22,6 +22,7 @@ using System.Globalization; using System.Linq; using Microsoft.Azure.Management.Sql.Models; +using System.Management.Automation; namespace Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Services { @@ -201,5 +202,149 @@ internal AzureSqlDeletedManagedDatabaseBackupModel GetDeletedDatabaseBackup(stri EarliestRestorePoint = deletedDatabaseBackup.EarliestRestoreDate, }; } + + /// + /// Get a backup LongTermRetention policy for a Managed Database + /// + /// The name of the resource group + /// The name of the Managed Instance + /// The name of the Managed Database + /// Whether or not the user provided the Current switch to get the current implementation of LTR policy + /// A backup LongTermRetention policy + internal AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel GetManagedDatabaseBackupLongTermRetentionPolicy( + string resourceGroup, + string instanceName, + string databaseName) + { + Management.Sql.Models.BackupLongTermRetentionPolicy response = Communicator.GetManagedDatabaseLongTermRetentionPolicy( + resourceGroup, + instanceName, + databaseName); + return new AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel() + { + ResourceGroupName = resourceGroup, + ManagedInstanceName = instanceName, + DatabaseName = databaseName, + WeeklyRetention = response.WeeklyRetention, + MonthlyRetention = response.MonthlyRetention, + YearlyRetention = response.YearlyRetention, + WeekOfYear = response.WeekOfYear + }; + } + + private AzureSqlManagedDatabaseLongTermRetentionBackupModel GetBackupModel(Management.Sql.Models.LongTermRetentionBackup backup, string locationName) + { + return new AzureSqlManagedDatabaseLongTermRetentionBackupModel() + { + BackupExpirationTime = backup.BackupExpirationTime, + BackupName = backup.Name, + BackupTime = backup.BackupTime, + DatabaseDeletionTime = backup.DatabaseDeletionTime, + DatabaseName = backup.DatabaseName, + Location = locationName, + ResourceId = backup.Id, + ServerCreateTime = backup.ServerCreateTime, + ServerName = backup.ServerName, + ResourceGroupName = GetResourceGroupNameFromResourceId(backup.Id) + }; + } + + private string GetResourceGroupNameFromResourceId(string resourceId) + { + if (resourceId.Contains("/resourceGroups/")) + { + return resourceId.Split('/')[4]; + } + return null; + } + + /// + /// Gets the Long Term Retention backups. + /// + /// The location name. + /// The server name. + /// The database name. + /// The backup name. + /// The resource group name + /// Whether or not to only get the latest backup per database. + /// The state of databases to get backups for: All, Live, Deleted. + internal IEnumerable GetManagedDatabaseLongTermRetentionBackups( + string locationName, + string managedInstanceName, + string databaseName, + string backupName, + string resourceGroupName, + bool? onlyLatestPerDatabase, + string databaseState) + { + if (!string.IsNullOrWhiteSpace(backupName) && !WildcardPattern.ContainsWildcardCharacters(backupName)) + { + return new List() + { + GetBackupModel(Communicator.GetManagedDatabaseLongTermRetentionBackup(locationName, managedInstanceName, databaseName, backupName, resourceGroupName), locationName) + }; + } + else + { + return Communicator.GetManagedDatabaseLongTermRetentionBackups(locationName, managedInstanceName, databaseName, resourceGroupName, onlyLatestPerDatabase, databaseState) + .Select(b => GetBackupModel(b, locationName)); + } + } + + /// + /// Removes a Long Term Retention backup. + /// + /// The location name. + /// The server name. + /// The database name. + /// The backup name. + /// The name of the resource group + internal void RemoveManagedDatabaseLongTermRetentionBackup( + string locationName, + string serverName, + string databaseName, + string backupName, + string resourceGroupName) + { + Communicator.RemoveManagedDatabaseLongTermRetentionBackup(locationName, serverName, databaseName, backupName, resourceGroupName); + } + + /// + /// Create or update a backup LongTermRetention policy for a Managed Database + /// + /// The name of the resource group + /// The name of the Azure SQL Server + /// The name of the Azure SQL Database + /// A backup LongTermRetention policy + internal AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel SetManagedDatabaseBackupLongTermRetentionPolicy( + string resourceGroup, + string managedInstanceName, + string databaseName, + AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel model) + { + Management.Sql.Models.BackupLongTermRetentionPolicy response = Communicator.SetDatabaseLongTermRetentionPolicy( + resourceGroup, + managedInstanceName, + databaseName, + new Management.Sql.Models.BackupLongTermRetentionPolicy() + { + WeeklyRetention = model.WeeklyRetention, + MonthlyRetention = model.MonthlyRetention, + YearlyRetention = model.YearlyRetention, + WeekOfYear = model.WeekOfYear + }); + return new AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel() + { + ResourceGroupName = resourceGroup, + ManagedInstanceName = managedInstanceName, + DatabaseName = databaseName, + WeeklyRetention = response.WeeklyRetention, + MonthlyRetention = response.MonthlyRetention, + YearlyRetention = response.YearlyRetention, + WeekOfYear = response.WeekOfYear + }; + } + + } } diff --git a/src/Sql/Sql/ManagedDatabase Backup/Services/AzureSqlManagedDatabaseBackupCommunicator.cs b/src/Sql/Sql/ManagedDatabase Backup/Services/AzureSqlManagedDatabaseBackupCommunicator.cs index f90c88289ede..a0fab47655c4 100644 --- a/src/Sql/Sql/ManagedDatabase Backup/Services/AzureSqlManagedDatabaseBackupCommunicator.cs +++ b/src/Sql/Sql/ManagedDatabase Backup/Services/AzureSqlManagedDatabaseBackupCommunicator.cs @@ -144,5 +144,25 @@ public RestorableDroppedManagedDatabase GetDeletedDatabaseBackup(string resource { return GetCurrentSqlClient().RestorableDroppedManagedDatabases.Get(resourceGroupName, serverName, databaseName); } + + /// + /// Get a backup LongTermRetention policy for a Azure SQL Database + /// + /// The name of the resource group + /// The name of the Azure SQL Server + /// The name of the Azure SQL Database + /// A backup LongTermRetention policy + public Management.Sql.LegacySdk.Models.DatabaseBackupLongTermRetentionPolicy GetManagedDatabaseBackupLongTermRetentionPolicy( + string resourceGroupName, + string serverName, + string databaseName, + string baPolicyName) + { + return GetCurrentSqlClient().ManagedDatabaseBackup.GetDatabaseBackupLongTermRetentionPolicy( + resourceGroupName, + serverName, + databaseName, + baPolicyName).DatabaseBackupLongTermRetentionPolicy; + } } } diff --git a/src/Sql/Sql/ManagedDatabase/Cmdlet/RestoreAzureSqlManagedDatabase.cs b/src/Sql/Sql/ManagedDatabase/Cmdlet/RestoreAzureSqlManagedDatabase.cs index 6c2e5bec399a..9b6e417a0052 100644 --- a/src/Sql/Sql/ManagedDatabase/Cmdlet/RestoreAzureSqlManagedDatabase.cs +++ b/src/Sql/Sql/ManagedDatabase/Cmdlet/RestoreAzureSqlManagedDatabase.cs @@ -61,6 +61,9 @@ public class RestoreAzureRmSqlManagedDatabase private const string GeoRestoreFromGeoBackupSetNameFromNameAndResourceGroupParameterSet = "GeoRestoreFromGeoBackupSetNameFromNameAndResourceGroupParameter"; + private const string LtrBackupRestoreFromInputParametersSet = + "LtrBackupRestoreFromInputParameters"; + /// /// Gets or sets flag indicating a restore from a point-in-time backup. /// @@ -115,6 +118,15 @@ public class RestoreAzureRmSqlManagedDatabase HelpMessage = "Restore from a geo backup.")] public SwitchParameter FromGeoBackup { get; set; } + /// + /// Gets or sets flag indicating a Long Term Retention backup restore request + /// + [Parameter( + ParameterSetName = LtrBackupRestoreFromInputParametersSet, + Mandatory = true, + HelpMessage = "Restore from a Long Term Retention backup.")] + public SwitchParameter FromLtrBackup { get; set; } + /// /// Gets or sets the source subscription id. /// @@ -193,7 +205,7 @@ public class RestoreAzureRmSqlManagedDatabase [ValidateNotNullOrEmpty] public override string InstanceName { get; set; } - /// + /// /// Gets or sets the instance database name to restore /// [Parameter(ParameterSetName = PointInTimeSameInstanceRestoreFromNameAndResourceGroupParameterSet, @@ -277,6 +289,11 @@ public class RestoreAzureRmSqlManagedDatabase [Parameter(ParameterSetName = GeoRestoreFromGeoBackupSetNameFromResourceIdParameterSet, Mandatory = true, HelpMessage = "The resource id of instance database object to restore")] + [Parameter(ParameterSetName =LtrBackupRestoreFromInputParametersSet, + Mandatory = true, + Position = 0, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource id of the long term retention backup object to restore.")] [ValidateNotNullOrEmpty] public string ResourceId { get; set; } @@ -351,6 +368,10 @@ public class RestoreAzureRmSqlManagedDatabase [Parameter(ParameterSetName = GeoRestoreFromGeoBackupSetNameFromNameAndResourceGroupParameterSet, Mandatory = true, HelpMessage = "The name of the target instance to restore to.")] + [Parameter(ParameterSetName = LtrBackupRestoreFromInputParametersSet, + Mandatory = true, + Position = 0, + HelpMessage = "The name of the target instance to restore to.")] [ResourceNameCompleter("Microsoft.Sql/managedInstances", "ResourceGroupName")] public string TargetInstanceName { get; set; } @@ -378,6 +399,10 @@ public class RestoreAzureRmSqlManagedDatabase [Parameter(ParameterSetName = GeoRestoreFromGeoBackupSetNameFromNameAndResourceGroupParameterSet, Mandatory = true, HelpMessage = "The name of the target resource group to restore to.")] + [Parameter(ParameterSetName = LtrBackupRestoreFromInputParametersSet, + Mandatory = true, + Position = 0, + HelpMessage = "The name of the target resource group to restore to.")] [ResourceGroupCompleter] public string TargetResourceGroupName { get; set; } @@ -484,6 +509,12 @@ protected override AzureSqlManagedDatabaseModel GetEntity() model.RestorePointInTime = null; break; + case LtrBackupRestoreFromInputParametersSet: + model.CreateMode = "RestoreLongTermRetentionBackup"; + model.LongTermRetentionBackupResourceId = ResourceId; + model.RestorePointInTime = null; + break; + default: throw new ArgumentException("No ParameterSet name"); } From 6d19b44702723e7502b5ad35d8d1c67ce6a57044 Mon Sep 17 00:00:00 2001 From: xaliciayang Date: Tue, 18 Feb 2020 13:07:44 -0800 Subject: [PATCH 02/61] point Sql.dll to local dll --- src/Sql/Sql.Test/Sql.Test.csproj | 6 + src/Sql/Sql/Az.Sql.psd1 | 6 +- .../AzureSqlDatabaseBackupCommunicator.cs | 48 +++---- ...edDatabaseBackupLongTermRetentionPolicy.cs | 6 +- ...lManagedDatabaseLongTermRetentionBackup.cs | 2 +- ...lManagedDatabaseLongTermRetentionBackup.cs | 2 +- ...edDatabaseBackupLongTermRetentionPolicy.cs | 6 +- .../AzureSqlManagedDatabaseBackupAdapter.cs | 14 +- ...ureSqlManagedDatabaseBackupCommunicator.cs | 129 +++++++++++++++++- .../Model/AzureSqlManagedDatabaseModel.cs | 6 + src/Sql/Sql/Sql.csproj | 8 +- tools/PS-VSPrompt.lnk | Bin 2248 -> 2180 bytes 12 files changed, 186 insertions(+), 47 deletions(-) diff --git a/src/Sql/Sql.Test/Sql.Test.csproj b/src/Sql/Sql.Test/Sql.Test.csproj index 236524fa864e..2b1e7df4a6d9 100644 --- a/src/Sql/Sql.Test/Sql.Test.csproj +++ b/src/Sql/Sql.Test/Sql.Test.csproj @@ -26,4 +26,10 @@ + + + ..\..\..\..\azure-sdk-for-net\artifacts\bin\Microsoft.Azure.Management.Sql\Debug\net452\Microsoft.Azure.Management.Sql.dll + + + diff --git a/src/Sql/Sql/Az.Sql.psd1 b/src/Sql/Sql/Az.Sql.psd1 index e8a1fb6dcde3..3c09bb15a4db 100644 --- a/src/Sql/Sql/Az.Sql.psd1 +++ b/src/Sql/Sql/Az.Sql.psd1 @@ -252,7 +252,11 @@ CmdletsToExport = 'Get-AzSqlDatabaseTransparentDataEncryption', 'Enable-AzSqlDatabaseSensitivityRecommendation', 'Disable-AzSqlDatabaseSensitivityRecommendation', 'Enable-AzSqlInstanceDatabaseSensitivityRecommendation', - 'Disable-AzSqlInstanceDatabaseSensitivityRecommendation' + 'Disable-AzSqlInstanceDatabaseSensitivityRecommendation', + 'Get-AzSqlInstanceDatabaseLongTermRetentionBackup', + 'Remove-AzSqlInstanceDatabaseLongTermRetentionBackup', + 'Get-AzSqlDatabaseBackupLongTermRetentionPolicy', + 'Set-AzSqlDatabaseBackupLongTermRetentionPolicy' # Variables to export from this module # VariablesToExport = @() diff --git a/src/Sql/Sql/Database Backup/Services/AzureSqlDatabaseBackupCommunicator.cs b/src/Sql/Sql/Database Backup/Services/AzureSqlDatabaseBackupCommunicator.cs index a4dfda0d2135..9efa6f7a2748 100644 --- a/src/Sql/Sql/Database Backup/Services/AzureSqlDatabaseBackupCommunicator.cs +++ b/src/Sql/Sql/Database Backup/Services/AzureSqlDatabaseBackupCommunicator.cs @@ -154,13 +154,13 @@ public Management.Sql.LegacySdk.Models.DeletedDatabaseBackup GetDeletedDatabaseB /// The name of the Azure SQL Server /// A backup vault public Management.Sql.LegacySdk.Models.BackupLongTermRetentionVault GetBackupLongTermRetentionVault( - string resourceGroupName, - string serverName, + string resourceGroupName, + string serverName, string baVaultName) { return GetLegacySqlClient().DatabaseBackup.GetBackupLongTermRetentionVault( - resourceGroupName, - serverName, + resourceGroupName, + serverName, baVaultName).BackupLongTermRetentionVault; } @@ -172,15 +172,15 @@ public Management.Sql.LegacySdk.Models.BackupLongTermRetentionVault GetBackupLon /// The name of the Azure SQL Database /// A backup LongTermRetention policy public Management.Sql.LegacySdk.Models.DatabaseBackupLongTermRetentionPolicy GetDatabaseBackupLongTermRetentionPolicy( - string resourceGroupName, - string serverName, - string databaseName, + string resourceGroupName, + string serverName, + string databaseName, string baPolicyName) { return GetLegacySqlClient().DatabaseBackup.GetDatabaseBackupLongTermRetentionPolicy( - resourceGroupName, - serverName, - databaseName, + resourceGroupName, + serverName, + databaseName, baPolicyName).DatabaseBackupLongTermRetentionPolicy; } @@ -188,15 +188,15 @@ public Management.Sql.LegacySdk.Models.DatabaseBackupLongTermRetentionPolicy Get /// Creates or updates a backup LongTermRetention vault /// public Management.Sql.LegacySdk.Models.BackupLongTermRetentionVault SetBackupLongTermRetentionVault( - string resourceGroupName, - string serverName, - string baVaultName, + string resourceGroupName, + string serverName, + string baVaultName, BackupLongTermRetentionVaultCreateOrUpdateParameters parameters) { return GetLegacySqlClient().DatabaseBackup.CreateOrUpdateBackupLongTermRetentionVault( - resourceGroupName, - serverName, - baVaultName, + resourceGroupName, + serverName, + baVaultName, parameters).BackupLongTermRetentionVault; } @@ -204,17 +204,17 @@ public Management.Sql.LegacySdk.Models.BackupLongTermRetentionVault SetBackupLon /// Creates or updates a backup LongTermRetention policy /// public Management.Sql.LegacySdk.Models.DatabaseBackupLongTermRetentionPolicy SetDatabaseBackupLongTermRetentionPolicy( - string resourceGroupName, - string serverName, - string databaseName, - string baPolicyName, + string resourceGroupName, + string serverName, + string databaseName, + string baPolicyName, DatabaseBackupLongTermRetentionPolicyCreateOrUpdateParameters parameters) { return GetLegacySqlClient().DatabaseBackup.CreateOrUpdateDatabaseBackupLongTermRetentionPolicy( - resourceGroupName, - serverName, - databaseName, - baPolicyName, + resourceGroupName, + serverName, + databaseName, + baPolicyName, parameters).DatabaseBackupLongTermRetentionPolicy; } diff --git a/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/GetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy.cs b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/GetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy.cs index 7c8cf722dbc8..ca4aafce0c6e 100644 --- a/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/GetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy.cs +++ b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/GetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy.cs @@ -21,10 +21,10 @@ namespace Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Cmdlet { - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlManagedDatabaseBackupLongTermRetentionPolicy", + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlInstanceDatabaseBackupLongTermRetentionPolicy", SupportsShouldProcess = true), OutputType(typeof(AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel))] - [Alias("Get-" + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlManagedDatabaseLongTermRetentionPolicy")] + [Alias("Get-" + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlInstanceDatabaseLongTermRetentionPolicy")] public class GetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy : AzureSqlManagedDatabaseBackupLongTermRetentionPolicyCmdletBase { /// @@ -35,7 +35,7 @@ protected override IEnumerable() { - ModelAdapter.GetManagedDatabaseBackupLongTermRetentionPolicy( + ModelAdapter.GetManagedDatabaseLongTermRetentionPolicy( this.ResourceGroupName, this.ManagedInstanceName, this.DatabaseName) diff --git a/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/GetAzureSqlManagedDatabaseLongTermRetentionBackup.cs b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/GetAzureSqlManagedDatabaseLongTermRetentionBackup.cs index a963f2e43a75..b483c35444d5 100644 --- a/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/GetAzureSqlManagedDatabaseLongTermRetentionBackup.cs +++ b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/GetAzureSqlManagedDatabaseLongTermRetentionBackup.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Cmdlet { - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlManagedDatabaseLongTermRetentionBackup", DefaultParameterSetName = LocationSet, SupportsShouldProcess = true), OutputType(typeof(AzureSqlManagedDatabaseLongTermRetentionBackupModel))] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlInstanceDatabaseLongTermRetentionBackup", DefaultParameterSetName = LocationSet, SupportsShouldProcess = true), OutputType(typeof(AzureSqlManagedDatabaseLongTermRetentionBackupModel))] public class GetAzureSqlManagedDatabaseLongTermRetentionBackup : AzureSqlManagedDatabaseLongTermRetentionBackupCmdletBase { /// diff --git a/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/RemoveAzureSqlManagedDatabaseLongTermRetentionBackup.cs b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/RemoveAzureSqlManagedDatabaseLongTermRetentionBackup.cs index 3fcfcf24cdf4..8f01d2567d6d 100644 --- a/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/RemoveAzureSqlManagedDatabaseLongTermRetentionBackup.cs +++ b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/RemoveAzureSqlManagedDatabaseLongTermRetentionBackup.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Cmdlet { - [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlManagedDatabaseLongTermRetentionBackup", DefaultParameterSetName = RemoveBackupDefaultSet, SupportsShouldProcess = true), OutputType(typeof(AzureSqlManagedDatabaseLongTermRetentionBackupModel))] + [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlInstanceDatabaseLongTermRetentionBackup", DefaultParameterSetName = RemoveBackupDefaultSet, SupportsShouldProcess = true), OutputType(typeof(AzureSqlManagedDatabaseLongTermRetentionBackupModel))] public class RemoveAzureSqlManagedDatabaseLongTermRetentionBackup : AzureSqlManagedDatabaseLongTermRetentionBackupCmdletBase { /// diff --git a/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/SetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy.cs b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/SetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy.cs index 2cb5142b25d5..5ff762f261ec 100644 --- a/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/SetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy.cs +++ b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/SetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy.cs @@ -25,11 +25,11 @@ namespace Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Cmdlet /// /// Cmdlet to create or update a new Azure Sql Database backup archival policy /// - [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlManagedDatabaseBackupLongTermRetentionPolicy", + [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlInstanceDatabaseBackupLongTermRetentionPolicy", DefaultParameterSetName = WeeklyRetentionRequiredSet, SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Low), OutputType(typeof(AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel))] - [Alias("Set-" + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlManagedDatabaseLongTermRetentionPolicy")] + [Alias("Set-" + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlInstanceDatabaseLongTermRetentionPolicy")] public class SetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy : AzureSqlManagedDatabaseBackupLongTermRetentionPolicyCmdletBase { /// @@ -120,7 +120,7 @@ protected override IEnumerable() { - ModelAdapter.GetManagedDatabaseBackupLongTermRetentionPolicy( + ModelAdapter.GetManagedDatabaseLongTermRetentionPolicy( this.ResourceGroupName, this.ManagedInstanceName, this.DatabaseName) diff --git a/src/Sql/Sql/ManagedDatabase Backup/Services/AzureSqlManagedDatabaseBackupAdapter.cs b/src/Sql/Sql/ManagedDatabase Backup/Services/AzureSqlManagedDatabaseBackupAdapter.cs index 93b38548d293..1ca5f6438070 100644 --- a/src/Sql/Sql/ManagedDatabase Backup/Services/AzureSqlManagedDatabaseBackupAdapter.cs +++ b/src/Sql/Sql/ManagedDatabase Backup/Services/AzureSqlManagedDatabaseBackupAdapter.cs @@ -211,12 +211,12 @@ internal AzureSqlDeletedManagedDatabaseBackupModel GetDeletedDatabaseBackup(stri /// The name of the Managed Database /// Whether or not the user provided the Current switch to get the current implementation of LTR policy /// A backup LongTermRetention policy - internal AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel GetManagedDatabaseBackupLongTermRetentionPolicy( + internal AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel GetManagedDatabaseLongTermRetentionPolicy( string resourceGroup, string instanceName, string databaseName) { - Management.Sql.Models.BackupLongTermRetentionPolicy response = Communicator.GetManagedDatabaseLongTermRetentionPolicy( + ManagedInstanceLongTermRetentionPolicy response = Communicator.GetManagedDatabaseLongTermRetentionPolicy( resourceGroup, instanceName, databaseName); @@ -232,7 +232,7 @@ internal AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel GetManagedDat }; } - private AzureSqlManagedDatabaseLongTermRetentionBackupModel GetBackupModel(Management.Sql.Models.LongTermRetentionBackup backup, string locationName) + private AzureSqlManagedDatabaseLongTermRetentionBackupModel GetBackupModel(ManagedInstanceLongTermRetentionBackup backup, string locationName) { return new AzureSqlManagedDatabaseLongTermRetentionBackupModel() { @@ -243,8 +243,8 @@ private AzureSqlManagedDatabaseLongTermRetentionBackupModel GetBackupModel(Manag DatabaseName = backup.DatabaseName, Location = locationName, ResourceId = backup.Id, - ServerCreateTime = backup.ServerCreateTime, - ServerName = backup.ServerName, + ServerCreateTime = backup.ManagedInstanceCreateTime, + ServerName = backup.ManagedInstanceName, ResourceGroupName = GetResourceGroupNameFromResourceId(backup.Id) }; } @@ -322,11 +322,11 @@ internal AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel SetManagedDat string databaseName, AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel model) { - Management.Sql.Models.BackupLongTermRetentionPolicy response = Communicator.SetDatabaseLongTermRetentionPolicy( + ManagedInstanceLongTermRetentionPolicy response = Communicator.SetManagedDatabaseLongTermRetentionPolicy( resourceGroup, managedInstanceName, databaseName, - new Management.Sql.Models.BackupLongTermRetentionPolicy() + new ManagedInstanceLongTermRetentionPolicy() { WeeklyRetention = model.WeeklyRetention, MonthlyRetention = model.MonthlyRetention, diff --git a/src/Sql/Sql/ManagedDatabase Backup/Services/AzureSqlManagedDatabaseBackupCommunicator.cs b/src/Sql/Sql/ManagedDatabase Backup/Services/AzureSqlManagedDatabaseBackupCommunicator.cs index a0fab47655c4..01ff289afe52 100644 --- a/src/Sql/Sql/ManagedDatabase Backup/Services/AzureSqlManagedDatabaseBackupCommunicator.cs +++ b/src/Sql/Sql/ManagedDatabase Backup/Services/AzureSqlManagedDatabaseBackupCommunicator.cs @@ -152,17 +152,134 @@ public RestorableDroppedManagedDatabase GetDeletedDatabaseBackup(string resource /// The name of the Azure SQL Server /// The name of the Azure SQL Database /// A backup LongTermRetention policy - public Management.Sql.LegacySdk.Models.DatabaseBackupLongTermRetentionPolicy GetManagedDatabaseBackupLongTermRetentionPolicy( + public ManagedInstanceLongTermRetentionPolicy GetManagedDatabaseLongTermRetentionPolicy( string resourceGroupName, string serverName, - string databaseName, - string baPolicyName) + string databaseName) { - return GetCurrentSqlClient().ManagedDatabaseBackup.GetDatabaseBackupLongTermRetentionPolicy( + return GetCurrentSqlClient().ManagedInstanceLongTermRetentionPolicies.Get( resourceGroupName, serverName, - databaseName, - baPolicyName).DatabaseBackupLongTermRetentionPolicy; + databaseName); + } + + /// + /// Sets a database's Long Term Retention policy. + /// + /// The resource group name. + /// The server name. + /// The database name. + /// The Long Term Retention policy to apply. + public Management.Sql.Models.ManagedInstanceLongTermRetentionPolicy SetManagedDatabaseLongTermRetentionPolicy( + string resourceGroup, + string serverName, + string databaseName, + ManagedInstanceLongTermRetentionPolicy policy) + { + return GetCurrentSqlClient().ManagedInstanceLongTermRetentionPolicies.CreateOrUpdate(resourceGroup, serverName, databaseName, policy); + } + + + /// + /// Gets the Long Term Retention backup. + /// + /// The location name. + /// The server name. + /// The database name. + /// The backup name. + /// The resource group name + public ManagedInstanceLongTermRetentionBackup GetManagedDatabaseLongTermRetentionBackup( + string locationName, + string serverName, + string databaseName, + string backupName, + string resourceGroupName) + { + if (string.IsNullOrWhiteSpace(resourceGroupName)) + { + return GetCurrentSqlClient().LongTermRetentionManagedInstanceBackups.Get(locationName, serverName, databaseName, backupName); + } + else + { + return GetCurrentSqlClient().LongTermRetentionManagedInstanceBackups.GetByResourceGroup(resourceGroupName, locationName, serverName, databaseName, backupName); + } + } + + /// + /// Gets the Long Term Retention backups. + /// + /// The location name. + /// The server name. + /// The database name. + /// The resource group name + /// Whether or not to only get the latest backup per database. + /// The state of databases to get backups for: All, Live, Deleted. + public Rest.Azure.IPage GetManagedDatabaseLongTermRetentionBackups( + string locationName, + string serverName, + string databaseName, + string resourceGroupName, + bool? onlyLatestPerDatabase, + string databaseState) + { + if (!string.IsNullOrWhiteSpace(databaseName)) + { + if (string.IsNullOrWhiteSpace(resourceGroupName)) + { + return GetCurrentSqlClient().LongTermRetentionManagedInstanceBackups.ListByDatabase(locationName, serverName, databaseName, onlyLatestPerDatabase, databaseState); + } + else + { + return GetCurrentSqlClient().LongTermRetentionManagedInstanceBackups.ListByResourceGroupDatabase(resourceGroupName, locationName, serverName, databaseName, onlyLatestPerDatabase, databaseState); + } + } + else if (!string.IsNullOrWhiteSpace(serverName)) + { + if (string.IsNullOrWhiteSpace(resourceGroupName)) + { + return GetCurrentSqlClient().LongTermRetentionManagedInstanceBackups.ListByInstance(locationName, serverName, onlyLatestPerDatabase, databaseState); + } + else + { + return GetCurrentSqlClient().LongTermRetentionManagedInstanceBackups.ListByResourceGroupInstance(resourceGroupName, locationName, serverName, onlyLatestPerDatabase, databaseState); + } + } + else + { + if (string.IsNullOrWhiteSpace(resourceGroupName)) + { + return GetCurrentSqlClient().LongTermRetentionManagedInstanceBackups.ListByLocation(locationName, onlyLatestPerDatabase, databaseState); + } + else + { + return GetCurrentSqlClient().LongTermRetentionManagedInstanceBackups.ListByResourceGroupLocation(resourceGroupName, locationName, onlyLatestPerDatabase, databaseState); + } + } + } + + /// + /// Removes a Long Term Retention backup. + /// + /// The location name. + /// The server name. + /// The database name. + /// The backup name. + /// The resource group name + public void RemoveManagedDatabaseLongTermRetentionBackup( + string locationName, + string serverName, + string databaseName, + string backupName, + string resourceGroupName) + { + if (string.IsNullOrWhiteSpace(resourceGroupName)) + { + GetCurrentSqlClient().LongTermRetentionManagedInstanceBackups.Delete(locationName, serverName, databaseName, backupName); + } + else + { + GetCurrentSqlClient().LongTermRetentionManagedInstanceBackups.DeleteByResourceGroup(resourceGroupName, locationName, serverName, databaseName, backupName); + } } } } diff --git a/src/Sql/Sql/ManagedDatabase/Model/AzureSqlManagedDatabaseModel.cs b/src/Sql/Sql/ManagedDatabase/Model/AzureSqlManagedDatabaseModel.cs index dcd724f651f8..bb2f97df1d7c 100644 --- a/src/Sql/Sql/ManagedDatabase/Model/AzureSqlManagedDatabaseModel.cs +++ b/src/Sql/Sql/ManagedDatabase/Model/AzureSqlManagedDatabaseModel.cs @@ -93,6 +93,11 @@ public class AzureSqlManagedDatabaseModel : AzureSqlManagedDatabaseBaseModel /// public string RestorableDroppedDatabaseId { get; set; } + /// + /// Gets or sets the long term retention backup resource ID + /// + public string LongTermRetentionBackupResourceId { get; set; } + /// /// Construct AzureSqlManagedDatabaseModel /// @@ -128,6 +133,7 @@ public AzureSqlManagedDatabaseModel(string resourceGroup, string managedInstance FailoverGroupId = database.FailoverGroupId; RecoverableDatabaseId = database.RecoverableDatabaseId; RestorableDroppedDatabaseId = database.RestorableDroppedDatabaseId; + LongTermRetentionBackupResourceId = database.LongTermRetentionBackupResourceId; } } } diff --git a/src/Sql/Sql/Sql.csproj b/src/Sql/Sql/Sql.csproj index f05265f9440a..1597ed3bdc3a 100644 --- a/src/Sql/Sql/Sql.csproj +++ b/src/Sql/Sql/Sql.csproj @@ -21,7 +21,7 @@ - + @@ -29,6 +29,12 @@ + + + D:\src\azure\azure-sdk-for-net\artifacts\bin\Microsoft.Azure.Management.Sql\Debug\net452\Microsoft.Azure.Management.Sql.dll + + + True diff --git a/tools/PS-VSPrompt.lnk b/tools/PS-VSPrompt.lnk index f4b94cb5ae254423da1ec8decedcecf51114d90c..560dc664b6d7530ca5fa501ec0ef3cda146b796f 100644 GIT binary patch delta 17 ZcmX>h*djPVgz@o4(F2T|C7IT<0RTC$1_1y7 delta 37 mcmZn>JRvwigz@!8(F2V9dJK9DF+dC@Cv$NaZ@$d9kqrR7!3lQ& From 6b28dfc0767cc6fe3b0d04eb8f34e81c7b4b8e64 Mon Sep 17 00:00:00 2001 From: xaliciayang Date: Fri, 21 Feb 2020 12:46:46 -0800 Subject: [PATCH 03/61] minor fix to restore powershell workflow --- ...ureSqlManagedDatabaseLongTermRetentionBackup.cs | 14 +++++++------- .../Cmdlet/RestoreAzureSqlManagedDatabase.cs | 5 ++++- .../Services/AzureSqlManagedDatabaseAdapter.cs | 1 + src/Sql/Sql/Sql.csproj | 8 +------- 4 files changed, 13 insertions(+), 15 deletions(-) diff --git a/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/GetAzureSqlManagedDatabaseLongTermRetentionBackup.cs b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/GetAzureSqlManagedDatabaseLongTermRetentionBackup.cs index b483c35444d5..dffdaf6194c1 100644 --- a/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/GetAzureSqlManagedDatabaseLongTermRetentionBackup.cs +++ b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/GetAzureSqlManagedDatabaseLongTermRetentionBackup.cs @@ -34,7 +34,7 @@ public class GetAzureSqlManagedDatabaseLongTermRetentionBackup : AzureSqlManaged /// /// Parameter set name for server name. /// - private const string ServerNameSet = "ServerName"; + private const string InstanceNameSet = "InstanceName"; /// /// Parameter set name for location name. @@ -69,7 +69,7 @@ public class GetAzureSqlManagedDatabaseLongTermRetentionBackup : AzureSqlManaged Position = 0, HelpMessage = "The location of the backups' source server.")] [Parameter(Mandatory = true, - ParameterSetName = ServerNameSet, + ParameterSetName = InstanceNameSet, Position = 0, HelpMessage = "The location of the backups' source server.")] [Parameter(Mandatory = true, @@ -122,7 +122,7 @@ public class GetAzureSqlManagedDatabaseLongTermRetentionBackup : AzureSqlManaged /// Gets or sets the name of the server. /// [Parameter(Mandatory = true, - ParameterSetName = ServerNameSet, + ParameterSetName = InstanceNameSet, Position = 1, HelpMessage = "The name of the Azure SQL Server the backups are under.")] [Parameter(Mandatory = true, @@ -137,7 +137,7 @@ public class GetAzureSqlManagedDatabaseLongTermRetentionBackup : AzureSqlManaged /// Gets or sets the name of the database. /// [Parameter(Mandatory = false, - ParameterSetName = ServerNameSet, + ParameterSetName = InstanceNameSet, HelpMessage = "The name of the Azure SQL Server the backups are under.")] [Parameter(Mandatory = true, ParameterSetName = BackupNameSet, @@ -176,7 +176,7 @@ public class GetAzureSqlManagedDatabaseLongTermRetentionBackup : AzureSqlManaged ParameterSetName = LocationSet, HelpMessage = "The name of the resource group.")] [Parameter(Mandatory = false, - ParameterSetName = ServerNameSet, + ParameterSetName = InstanceNameSet, HelpMessage = "The name of the resource group.")] [Parameter(Mandatory = false, ParameterSetName = BackupNameSet, @@ -188,7 +188,7 @@ public class GetAzureSqlManagedDatabaseLongTermRetentionBackup : AzureSqlManaged /// Gets or sets whether or not to only get the latest backup per database. /// [Parameter(Mandatory = false, - ParameterSetName = ServerNameSet, + ParameterSetName = InstanceNameSet, HelpMessage = "Whether or not to only get the latest backup per database. Defaults to false.")] [Parameter(Mandatory = false, ParameterSetName = LocationSet, @@ -206,7 +206,7 @@ public class GetAzureSqlManagedDatabaseLongTermRetentionBackup : AzureSqlManaged /// Gets or sets the database state to look for (Alive or Deleted). /// [Parameter(Mandatory = false, - ParameterSetName = ServerNameSet, + ParameterSetName = InstanceNameSet, ValueFromPipelineByPropertyName = true, HelpMessage = "The state of the database whose backups you want to find, Alive, Deleted, or All. Defaults to All")] [Parameter(Mandatory = false, diff --git a/src/Sql/Sql/ManagedDatabase/Cmdlet/RestoreAzureSqlManagedDatabase.cs b/src/Sql/Sql/ManagedDatabase/Cmdlet/RestoreAzureSqlManagedDatabase.cs index 9b6e417a0052..969e9f458718 100644 --- a/src/Sql/Sql/ManagedDatabase/Cmdlet/RestoreAzureSqlManagedDatabase.cs +++ b/src/Sql/Sql/ManagedDatabase/Cmdlet/RestoreAzureSqlManagedDatabase.cs @@ -146,6 +146,10 @@ public class RestoreAzureRmSqlManagedDatabase ParameterSetName = PointInTimeDeletedDatabasesCrossInstanceRestoreFromNameAndResourceGroupParameterSet, Mandatory = false, HelpMessage = "Source subscription id.")] + [Parameter( + ParameterSetName = LtrBackupRestoreFromInputParametersSet, + Mandatory = false, + HelpMessage = "Source subscription id.")] [Alias("SourceSubscriptionId")] public string SubscriptionId { get; set; } @@ -370,7 +374,6 @@ public class RestoreAzureRmSqlManagedDatabase HelpMessage = "The name of the target instance to restore to.")] [Parameter(ParameterSetName = LtrBackupRestoreFromInputParametersSet, Mandatory = true, - Position = 0, HelpMessage = "The name of the target instance to restore to.")] [ResourceNameCompleter("Microsoft.Sql/managedInstances", "ResourceGroupName")] public string TargetInstanceName { get; set; } diff --git a/src/Sql/Sql/ManagedDatabase/Services/AzureSqlManagedDatabaseAdapter.cs b/src/Sql/Sql/ManagedDatabase/Services/AzureSqlManagedDatabaseAdapter.cs index 85081870406e..5a805d9b42c2 100644 --- a/src/Sql/Sql/ManagedDatabase/Services/AzureSqlManagedDatabaseAdapter.cs +++ b/src/Sql/Sql/ManagedDatabase/Services/AzureSqlManagedDatabaseAdapter.cs @@ -129,6 +129,7 @@ internal AzureSqlManagedDatabaseModel RestoreManagedDatabase(AzureSqlManagedData RecoverableDatabaseId = model.RecoverableDatabaseId, RestorableDroppedDatabaseId = model.RestorableDroppedDatabaseId, SourceDatabaseId = model.SourceDatabaseId, + LongTermRetentionBackupResourceId = model.LongTermRetentionBackupResourceId }; Management.Sql.Models.ManagedDatabase database = Communicator.RestoreDatabase(model.ResourceGroupName, model.ManagedInstanceName, model.Name, dbModel); diff --git a/src/Sql/Sql/Sql.csproj b/src/Sql/Sql/Sql.csproj index 1597ed3bdc3a..f05265f9440a 100644 --- a/src/Sql/Sql/Sql.csproj +++ b/src/Sql/Sql/Sql.csproj @@ -21,7 +21,7 @@ - + @@ -29,12 +29,6 @@ - - - D:\src\azure\azure-sdk-for-net\artifacts\bin\Microsoft.Azure.Management.Sql\Debug\net452\Microsoft.Azure.Management.Sql.dll - - - True From 4fd106071216c952955dd3657931bc3f972130f2 Mon Sep 17 00:00:00 2001 From: Amol Agarwal Date: Fri, 21 Feb 2020 16:57:29 -0800 Subject: [PATCH 04/61] update sql server AAD Admin to use 2019-06-01-preview API. --- src/Sql/Sql.Test/Sql.Test.csproj | 2 +- ...rActiveDirectoryAdministratorCmdletBase.cs | 2 - ...reSqlServerActiveDirectoryAdministrator.cs | 36 ++++++++++++---- ...ServerActiveDirectoryAdministratorModel.cs | 5 +++ ...rverActiveDirectoryAdministratorAdapter.cs | 41 +++++++++++-------- ...ctiveDirectoryAdministratorCommunicator.cs | 23 +++++------ src/Sql/Sql/Sql.csproj | 2 +- 7 files changed, 70 insertions(+), 41 deletions(-) diff --git a/src/Sql/Sql.Test/Sql.Test.csproj b/src/Sql/Sql.Test/Sql.Test.csproj index 236524fa864e..aeb51e0b4de0 100644 --- a/src/Sql/Sql.Test/Sql.Test.csproj +++ b/src/Sql/Sql.Test/Sql.Test.csproj @@ -19,7 +19,7 @@ - + diff --git a/src/Sql/Sql/ServerActiveDirectoryAdministrator/Cmdlet/AzureSqlServerActiveDirectoryAdministratorCmdletBase.cs b/src/Sql/Sql/ServerActiveDirectoryAdministrator/Cmdlet/AzureSqlServerActiveDirectoryAdministratorCmdletBase.cs index 4dba4ca7e271..8f6a4e2ec262 100644 --- a/src/Sql/Sql/ServerActiveDirectoryAdministrator/Cmdlet/AzureSqlServerActiveDirectoryAdministratorCmdletBase.cs +++ b/src/Sql/Sql/ServerActiveDirectoryAdministrator/Cmdlet/AzureSqlServerActiveDirectoryAdministratorCmdletBase.cs @@ -12,8 +12,6 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Commands.Common.Authentication.Abstractions; -using Microsoft.Azure.Commands.Common.Authentication.Models; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.Sql.Common; using Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model; diff --git a/src/Sql/Sql/ServerActiveDirectoryAdministrator/Cmdlet/SetAzureSqlServerActiveDirectoryAdministrator.cs b/src/Sql/Sql/ServerActiveDirectoryAdministrator/Cmdlet/SetAzureSqlServerActiveDirectoryAdministrator.cs index 509f6d01bcb9..cc27e2a6b619 100644 --- a/src/Sql/Sql/ServerActiveDirectoryAdministrator/Cmdlet/SetAzureSqlServerActiveDirectoryAdministrator.cs +++ b/src/Sql/Sql/ServerActiveDirectoryAdministrator/Cmdlet/SetAzureSqlServerActiveDirectoryAdministrator.cs @@ -11,9 +11,8 @@ // See the License for the specific language governing permissions and // limitations under the License. // ---------------------------------------------------------------------------------- - -using Hyak.Common; using Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model; +using Microsoft.Rest.Azure; using System; using System.Collections.Generic; using System.Linq; @@ -24,7 +23,7 @@ namespace Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Cmdlet /// /// Cmdlet to create a new Azure SQL Server Active Directory administrator /// - [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServerActiveDirectoryAdministrator",ConfirmImpact = ConfirmImpact.Medium, SupportsShouldProcess = true), OutputType(typeof(AzureSqlServerActiveDirectoryAdministratorModel))] + [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServerActiveDirectoryAdministrator", ConfirmImpact = ConfirmImpact.Medium, SupportsShouldProcess = true), OutputType(typeof(AzureSqlServerActiveDirectoryAdministratorModel))] public class SetAzureSqlServerActiveDirectoryAdministrator : AzureSqlServerActiveDirectoryAdministratorCmdletBase { /// @@ -47,6 +46,16 @@ public class SetAzureSqlServerActiveDirectoryAdministrator : AzureSqlServerActiv [ValidateNotNullOrEmpty()] public Guid ObjectId { get; set; } + /// + /// Only Azure Active Directory authentication allowed + /// + [Parameter(Mandatory = false, + ValueFromPipelineByPropertyName = true, + Position = 4, + HelpMessage = "Specifies if only Azure Active Directory authentication is allowed.")] + [ValidateNotNullOrEmpty()] + public bool? IsAzureOnlyAuthentication { get; set; } + /// /// Get the entities from the service /// @@ -54,12 +63,16 @@ public class SetAzureSqlServerActiveDirectoryAdministrator : AzureSqlServerActiv protected override IEnumerable GetEntity() { List currentActiveDirectoryAdmins = null; + try { - currentActiveDirectoryAdmins = new List() + AzureSqlServerActiveDirectoryAdministratorModel model = ModelAdapter.GetServerActiveDirectoryAdministrator(this.ResourceGroupName, this.ServerName); + + if (model != null) { - ModelAdapter.GetServerActiveDirectoryAdministrator(this.ResourceGroupName, this.ServerName), - }; + currentActiveDirectoryAdmins = new List(); + currentActiveDirectoryAdmins.Add(model); + } } catch (CloudException ex) { @@ -69,6 +82,14 @@ protected override IEnumerable throw; } } + catch (Exception ex) + { + if ((ex.InnerException is CloudException ex1) && + ex1.Response.StatusCode != System.Net.HttpStatusCode.NotFound) + { + throw ex.InnerException ?? ex; + } + } return currentActiveDirectoryAdmins; } @@ -80,13 +101,14 @@ protected override IEnumerable /// A list of models that was passed in protected override IEnumerable ApplyUserInputToModel(IEnumerable model) { - List newEntity = new List(); + List newEntity = new List(); newEntity.Add(new AzureSqlServerActiveDirectoryAdministratorModel() { ResourceGroupName = ResourceGroupName, ServerName = ServerName, DisplayName = DisplayName, ObjectId = ObjectId, + IsAzureADOnlyAuthentication = IsAzureOnlyAuthentication, }); return newEntity; } diff --git a/src/Sql/Sql/ServerActiveDirectoryAdministrator/Model/AzureSqlServerActiveDirectoryAdministratorModel.cs b/src/Sql/Sql/ServerActiveDirectoryAdministrator/Model/AzureSqlServerActiveDirectoryAdministratorModel.cs index 80efaabb8671..1d6a0a5a88e2 100644 --- a/src/Sql/Sql/ServerActiveDirectoryAdministrator/Model/AzureSqlServerActiveDirectoryAdministratorModel.cs +++ b/src/Sql/Sql/ServerActiveDirectoryAdministrator/Model/AzureSqlServerActiveDirectoryAdministratorModel.cs @@ -40,5 +40,10 @@ public class AzureSqlServerActiveDirectoryAdministratorModel /// Gets or sets the unique ID of the Azure SQL Server Active administrator admin object id /// public Guid ObjectId { get; set; } + + /// + /// Gets or sets the value to indicate if only Azure AD Only authentication is allowed + /// + public bool? IsAzureADOnlyAuthentication { get; set; } } } diff --git a/src/Sql/Sql/ServerActiveDirectoryAdministrator/Services/AzureSqlServerActiveDirectoryAdministratorAdapter.cs b/src/Sql/Sql/ServerActiveDirectoryAdministrator/Services/AzureSqlServerActiveDirectoryAdministratorAdapter.cs index 01a515d04150..280f784222d1 100644 --- a/src/Sql/Sql/ServerActiveDirectoryAdministrator/Services/AzureSqlServerActiveDirectoryAdministratorAdapter.cs +++ b/src/Sql/Sql/ServerActiveDirectoryAdministrator/Services/AzureSqlServerActiveDirectoryAdministratorAdapter.cs @@ -14,8 +14,7 @@ using Microsoft.Azure.Commands.Common.Authentication.Abstractions; using Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model; -using Microsoft.Azure.Commands.Sql.Services; -using Microsoft.Azure.Management.Sql.LegacySdk.Models; +using Microsoft.Azure.Management.Sql.Models; using Microsoft.Azure.Graph.RBAC.Version1_6.ActiveDirectory; using System; using System.Collections.Generic; @@ -113,10 +112,7 @@ internal ICollection ListServer /// The upserted Azure SQL Server Active Directory administrator internal AzureSqlServerActiveDirectoryAdministratorModel UpsertServerActiveDirectoryAdministrator(string resourceGroup, string serverName, AzureSqlServerActiveDirectoryAdministratorModel model) { - var resp = Communicator.CreateOrUpdate(resourceGroup, serverName, new ServerAdministratorCreateOrUpdateParameters() - { - Properties = GetActiveDirectoryInformation(model.DisplayName, model.ObjectId) - }); + var resp = Communicator.CreateOrUpdate(resourceGroup, serverName, GetActiveDirectoryInformation(model.DisplayName, model.ObjectId, model.IsAzureADOnlyAuthentication)); return CreateServerActiveDirectoryAdministratorModelFromResponse(resourceGroup, serverName, resp); } @@ -138,16 +134,21 @@ public void RemoveServerActiveDirectoryAdministrator(string resourceGroupName, s /// The name of the Azure Sql ServerActiveDirectoryAdministrator Server /// The service response /// The converted model - public static AzureSqlServerActiveDirectoryAdministratorModel CreateServerActiveDirectoryAdministratorModelFromResponse(string resourceGroup, string serverName, Management.Sql.LegacySdk.Models.ServerAdministrator admin) + public static AzureSqlServerActiveDirectoryAdministratorModel CreateServerActiveDirectoryAdministratorModelFromResponse(string resourceGroup, string serverName, Management.Sql.Models.ServerAzureADAdministrator admin) { - AzureSqlServerActiveDirectoryAdministratorModel model = new AzureSqlServerActiveDirectoryAdministratorModel(); - - model.ResourceGroupName = resourceGroup; - model.ServerName = serverName; - model.DisplayName = admin.Properties.Login; - model.ObjectId = admin.Properties.Sid; + if (admin != null) + { + AzureSqlServerActiveDirectoryAdministratorModel model = new AzureSqlServerActiveDirectoryAdministratorModel(); + + model.ResourceGroupName = resourceGroup; + model.ServerName = serverName; + model.DisplayName = admin.Login; + model.ObjectId = admin.Sid; + model.IsAzureADOnlyAuthentication = admin.AzureADOnlyAuthentication; + return model; + } - return model; + return null; } /// @@ -155,8 +156,9 @@ public static AzureSqlServerActiveDirectoryAdministratorModel CreateServerActive /// /// Azure Active Directory user or group display name /// Azure Active Directory user or group object id + /// Allow only Azure Active Directory authentication /// - protected ServerAdministratorCreateOrUpdateProperties GetActiveDirectoryInformation(string displayName, Guid objectId) + protected ServerAzureADAdministrator GetActiveDirectoryInformation(string displayName, Guid objectId, bool? isAzureADOnlyAuthentication) { // Gets the default Tenant id for the subscriptions Guid tenantId = GetTenantId(); @@ -164,7 +166,7 @@ protected ServerAdministratorCreateOrUpdateProperties GetActiveDirectoryInformat // Check for a Azure Active Directory group. Recommended to always use group. IEnumerable groupList = null; - var filter = new ADObjectFilterOptions() + var filter = new ADObjectFilterOptions() { Id = (objectId != null && objectId != Guid.Empty) ? objectId.ToString() : null, SearchString = displayName, @@ -190,11 +192,13 @@ protected ServerAdministratorCreateOrUpdateProperties GetActiveDirectoryInformat throw new ArgumentException(string.Format(Microsoft.Azure.Commands.Sql.Properties.Resources.InvalidADGroupNotSecurity, displayName)); } - return new ServerAdministratorCreateOrUpdateProperties() + + return new ServerAzureADAdministrator() { Login = group.DisplayName, Sid = group.Id, TenantId = tenantId, + AzureADOnlyAuthentication = isAzureADOnlyAuthentication, }; } @@ -238,11 +242,12 @@ protected ServerAdministratorCreateOrUpdateProperties GetActiveDirectoryInformat // Only one user was found. Get the user display name and object id var obj = userList.First(); - return new ServerAdministratorCreateOrUpdateProperties() + return new ServerAzureADAdministrator() { Login = displayName, Sid = obj.Id, TenantId = tenantId, + AzureADOnlyAuthentication = isAzureADOnlyAuthentication, }; } } diff --git a/src/Sql/Sql/ServerActiveDirectoryAdministrator/Services/AzureSqlServerActiveDirectoryAdministratorCommunicator.cs b/src/Sql/Sql/ServerActiveDirectoryAdministrator/Services/AzureSqlServerActiveDirectoryAdministratorCommunicator.cs index 9f78a57fd735..9ae12b41a075 100644 --- a/src/Sql/Sql/ServerActiveDirectoryAdministrator/Services/AzureSqlServerActiveDirectoryAdministratorCommunicator.cs +++ b/src/Sql/Sql/ServerActiveDirectoryAdministrator/Services/AzureSqlServerActiveDirectoryAdministratorCommunicator.cs @@ -14,8 +14,9 @@ using Microsoft.Azure.Commands.Common.Authentication; using Microsoft.Azure.Commands.Common.Authentication.Abstractions; -using Microsoft.Azure.Management.Sql.LegacySdk; -using Microsoft.Azure.Management.Sql.LegacySdk.Models; +using Microsoft.Azure.Management.Sql; +using Microsoft.Azure.Management.Sql.Models; +using Microsoft.WindowsAzure.Commands.Utilities.Common; using System.Collections.Generic; namespace Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Services @@ -68,27 +69,25 @@ public AzureSqlServerActiveDirectoryAdministratorCommunicator(IAzureContext cont /// /// Gets the Azure SQL Server Active Directory administrator /// - public Management.Sql.LegacySdk.Models.ServerAdministrator Get(string resourceGroupName, string serverName) + public Management.Sql.Models.ServerAzureADAdministrator Get(string resourceGroupName, string serverName) { - return GetCurrentSqlClient().ServerAdministrators.Get(resourceGroupName, serverName, ActiveDirectoryDefaultName).Administrator; + return GetCurrentSqlClient().ServerAzureADAdministrators.GetAsync(resourceGroupName, serverName).Result; } /// /// Lists Azure SQL Server Active Directory administrators /// - public IList List(string resourceGroupName, string serverName) + public IEnumerable List(string resourceGroupName, string serverName) { - return GetCurrentSqlClient().ServerAdministrators.List(resourceGroupName, serverName).Administrators; + return GetCurrentSqlClient().ServerAzureADAdministrators.ListByServer(resourceGroupName, serverName); } /// /// Creates or updates a Azure SQL Server Active Directory Administrator /// - public Management.Sql.LegacySdk.Models.ServerAdministrator CreateOrUpdate(string resourceGroupName, string serverName, ServerAdministratorCreateOrUpdateParameters parameters) + public Management.Sql.Models.ServerAzureADAdministrator CreateOrUpdate(string resourceGroupName, string serverName, ServerAzureADAdministrator parameters) { - // Always set the type to active directory - parameters.Properties.AdministratorType = ActiveDirectoryDefaultType; - return GetCurrentSqlClient().ServerAdministrators.CreateOrUpdate(resourceGroupName, serverName, ActiveDirectoryDefaultName, parameters).ServerAdministrator; + return GetCurrentSqlClient().ServerAzureADAdministrators.CreateOrUpdate(resourceGroupName, serverName, parameters); } /// @@ -96,7 +95,7 @@ public Management.Sql.LegacySdk.Models.ServerAdministrator CreateOrUpdate(string /// public void Remove(string resourceGroupName, string serverName) { - GetCurrentSqlClient().ServerAdministrators.Delete(resourceGroupName, serverName, ActiveDirectoryDefaultName); + GetCurrentSqlClient().ServerAzureADAdministrators.DeleteWithHttpMessagesAsync(resourceGroupName, serverName); } /// @@ -109,7 +108,7 @@ private SqlManagementClient GetCurrentSqlClient() // Get the SQL management client for the current subscription if (SqlClient == null) { - SqlClient = AzureSession.Instance.ClientFactory.CreateClient(Context, AzureEnvironment.Endpoint.ResourceManager); + SqlClient = AzureSession.Instance.ClientFactory.CreateArmClient(Context, AzureEnvironment.Endpoint.ResourceManager); } return SqlClient; } diff --git a/src/Sql/Sql/Sql.csproj b/src/Sql/Sql/Sql.csproj index f05265f9440a..80f93c27e136 100644 --- a/src/Sql/Sql/Sql.csproj +++ b/src/Sql/Sql/Sql.csproj @@ -21,7 +21,7 @@ - + From be35bf0e793c9edede8bafa4f52abc7eb6422eb2 Mon Sep 17 00:00:00 2001 From: Amol Agarwal Date: Mon, 24 Feb 2020 13:06:47 -0800 Subject: [PATCH 05/61] add Disable-AzSqlServerActiveDirectoryOnlyAuthentication cmdlet and help files. --- src/Sql/Sql/Az.Sql.psd1 | 3 +- ...rverActiveDirectoryAdministratorAdapter.cs | 13 ++ ...ctiveDirectoryAdministratorCommunicator.cs | 9 +- src/Sql/Sql/help/Az.Sql.md | 4 + ...ServerActiveDirectoryOnlyAuthentication.md | 134 ++++++++++++++++++ ...AzSqlServerActiveDirectoryAdministrator.md | 8 +- ...AzSqlServerActiveDirectoryAdministrator.md | 23 ++- 7 files changed, 186 insertions(+), 8 deletions(-) create mode 100644 src/Sql/Sql/help/Disable-AzSqlServerActiveDirectoryOnlyAuthentication.md diff --git a/src/Sql/Sql/Az.Sql.psd1 b/src/Sql/Sql/Az.Sql.psd1 index e8a1fb6dcde3..a3eb6fe16375 100644 --- a/src/Sql/Sql/Az.Sql.psd1 +++ b/src/Sql/Sql/Az.Sql.psd1 @@ -252,7 +252,8 @@ CmdletsToExport = 'Get-AzSqlDatabaseTransparentDataEncryption', 'Enable-AzSqlDatabaseSensitivityRecommendation', 'Disable-AzSqlDatabaseSensitivityRecommendation', 'Enable-AzSqlInstanceDatabaseSensitivityRecommendation', - 'Disable-AzSqlInstanceDatabaseSensitivityRecommendation' + 'Disable-AzSqlInstanceDatabaseSensitivityRecommendation', + 'Disable-AzSqlServerActiveDirectoryOnlyAuthentication' # Variables to export from this module # VariablesToExport = @() diff --git a/src/Sql/Sql/ServerActiveDirectoryAdministrator/Services/AzureSqlServerActiveDirectoryAdministratorAdapter.cs b/src/Sql/Sql/ServerActiveDirectoryAdministrator/Services/AzureSqlServerActiveDirectoryAdministratorAdapter.cs index 280f784222d1..d3dafde0de59 100644 --- a/src/Sql/Sql/ServerActiveDirectoryAdministrator/Services/AzureSqlServerActiveDirectoryAdministratorAdapter.cs +++ b/src/Sql/Sql/ServerActiveDirectoryAdministrator/Services/AzureSqlServerActiveDirectoryAdministratorAdapter.cs @@ -127,6 +127,19 @@ public void RemoveServerActiveDirectoryAdministrator(string resourceGroupName, s Communicator.Remove(resourceGroupName, serverName); } + /// + /// Disable Azure Active Directory only authentication on a Azure SQL Server + /// + /// The name of the resource group + /// The name of the Azure Sql ServerActiveDirectoryAdministrator Server + /// The upserted Azure SQL Server Active Directory administrator + internal AzureSqlServerActiveDirectoryAdministratorModel DisableAzureADOnlyAuthenticaion(string resourceGroup, string serverName) + { + var resp = Communicator.Disable(resourceGroup, serverName); + + return CreateServerActiveDirectoryAdministratorModelFromResponse(resourceGroup, serverName, resp); + } + /// /// Converts the response from the service to a powershell database object /// diff --git a/src/Sql/Sql/ServerActiveDirectoryAdministrator/Services/AzureSqlServerActiveDirectoryAdministratorCommunicator.cs b/src/Sql/Sql/ServerActiveDirectoryAdministrator/Services/AzureSqlServerActiveDirectoryAdministratorCommunicator.cs index 9ae12b41a075..c8c2556733c3 100644 --- a/src/Sql/Sql/ServerActiveDirectoryAdministrator/Services/AzureSqlServerActiveDirectoryAdministratorCommunicator.cs +++ b/src/Sql/Sql/ServerActiveDirectoryAdministrator/Services/AzureSqlServerActiveDirectoryAdministratorCommunicator.cs @@ -16,7 +16,6 @@ using Microsoft.Azure.Commands.Common.Authentication.Abstractions; using Microsoft.Azure.Management.Sql; using Microsoft.Azure.Management.Sql.Models; -using Microsoft.WindowsAzure.Commands.Utilities.Common; using System.Collections.Generic; namespace Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Services @@ -98,6 +97,14 @@ public void Remove(string resourceGroupName, string serverName) GetCurrentSqlClient().ServerAzureADAdministrators.DeleteWithHttpMessagesAsync(resourceGroupName, serverName); } + /// + /// Disables Azure Active Directory only authentication on a Azure SQL Server + /// + public Management.Sql.Models.ServerAzureADAdministrator Disable(string resourceGroupName, string serverName) + { + return GetCurrentSqlClient().ServerAzureADAdministrators.DisableAzureADOnlyAuthenticationAsync(resourceGroupName, serverName).Result; + } + /// /// Retrieve the SQL Management client for the currently selected subscription, adding the session and request /// id tracing headers for the current cmdlet invocation. diff --git a/src/Sql/Sql/help/Az.Sql.md b/src/Sql/Sql/help/Az.Sql.md index 08179ef60b27..e933487b7851 100644 --- a/src/Sql/Sql/help/Az.Sql.md +++ b/src/Sql/Sql/help/Az.Sql.md @@ -71,6 +71,10 @@ Disables Advanced Data Security on a managed instance. ### [Disable-AzSqlInstanceDatabaseSensitivityRecommendation](Disable-AzSqlInstanceDatabaseSensitivityRecommendation) Disbles sensitivity recommendations on columns in the Azure SQL managed instance database. + +### [Disable-AzSqlServerActiveDirectoryOnlyAuthentication](Disable-AzSqlServerActiveDirectoryOnlyAuthentication.md) +Disables Azure AD only authentication for a specific SQL Server. + ### [Disable-AzSqlServerAdvancedDataSecurity](Disable-AzSqlServerAdvancedDataSecurity.md) Disables Advanced Data Security on a server. diff --git a/src/Sql/Sql/help/Disable-AzSqlServerActiveDirectoryOnlyAuthentication.md b/src/Sql/Sql/help/Disable-AzSqlServerActiveDirectoryOnlyAuthentication.md new file mode 100644 index 000000000000..a2f4d509ae7f --- /dev/null +++ b/src/Sql/Sql/help/Disable-AzSqlServerActiveDirectoryOnlyAuthentication.md @@ -0,0 +1,134 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Sql.dll-Help.xml +Module Name: Az.Sql +online version: +schema: 2.0.0 +--- + +# Disable-AzSqlServerActiveDirectoryOnlyAuthentication + +## SYNOPSIS +Disables Azure AD only authentication for a specific SQL Server. + +## SYNTAX + +``` +Disable-AzSqlServerActiveDirectoryOnlyAuthentication [-ServerName] [-ResourceGroupName] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Disable-AzSqlServerActiveDirectoryOnlyAuthentication** cmdlet disables Azure Active Directory (Azure AD) only authentication requirement for an AzureSQL Server in the current subscription. + +## EXAMPLES + +### Example 1: Disable Azure Active Directory only authentication for a server +``` +PS C:\>Disable-AzSqlServerActiveDirectoryOnlyAuthentication -ResourceGroupName "ResourceGroup01" -ServerName "Server01" +ResourceGroupName ServerName DisplayName ObjectId IsAzureADOnlyAuthentication +----------------- ---------- ----------- -------- ----------- +ResourceGroup01 Server01 DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b False +``` + +This command disables Azure Active Directory (Azure AD) only authentication requirement for an AzureSQL server named Server01 that is associated with a resource group named ResourceGroup01. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ServerName +The name of the Azure SQL Server the Azure Active Directory administrator is in. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel + +## NOTES + +## RELATED LINKS + +[Remove-AzSqlServerActiveDirectoryAdministrator](./Remove-AzSqlServerActiveDirectoryAdministrator.md) + +[Set-AzSqlServerActiveDirectoryAdministrator](./Set-AzSqlServerActiveDirectoryAdministrator.md) + +[Get-AzSqlServerActiveDirectoryAdministrator](./Get-AzSqlServerActiveDirectoryAdministrator.md) + +[SQL Database Documentation](https://docs.microsoft.com/azure/sql-database/) diff --git a/src/Sql/Sql/help/Get-AzSqlServerActiveDirectoryAdministrator.md b/src/Sql/Sql/help/Get-AzSqlServerActiveDirectoryAdministrator.md index 3c7c3f6c2d05..a239884dabad 100644 --- a/src/Sql/Sql/help/Get-AzSqlServerActiveDirectoryAdministrator.md +++ b/src/Sql/Sql/help/Get-AzSqlServerActiveDirectoryAdministrator.md @@ -26,9 +26,9 @@ The **Get-AzSqlServerActiveDirectoryAdministrator** cmdlet gets information abou ### Example 1: Gets information about an administrator for a server ``` PS C:\>Get-AzSqlServerActiveDirectoryAdministrator -ResourceGroupName "ResourceGroup01" -ServerName "Server01" -ResourceGroupName ServerName DisplayName ObjectId ------------------ ---------- ----------- -------- -ResourceGroup01 Server01 DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b +ResourceGroupName ServerName DisplayName ObjectId IsAzureADOnlyAuthentication +----------------- ---------- ----------- -------- ----------- +ResourceGroup01 Server01 DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b true ``` This command gets information about an Azure AD administrator for a server named Server01 that is associated with a resource group named ResourceGroup01. @@ -130,6 +130,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Set-AzSqlServerActiveDirectoryAdministrator](./Set-AzSqlServerActiveDirectoryAdministrator.md) +[Disable-AzSqlServerActiveDirectoryOnlyAuthentication](./Disable-AzSqlServerActiveDirectoryOnlyAuthentication.md) + [SQL Database Documentation](https://docs.microsoft.com/azure/sql-database/) diff --git a/src/Sql/Sql/help/Set-AzSqlServerActiveDirectoryAdministrator.md b/src/Sql/Sql/help/Set-AzSqlServerActiveDirectoryAdministrator.md index 455d0849ebc2..863db122ca17 100644 --- a/src/Sql/Sql/help/Set-AzSqlServerActiveDirectoryAdministrator.md +++ b/src/Sql/Sql/help/Set-AzSqlServerActiveDirectoryAdministrator.md @@ -14,9 +14,9 @@ Provisions an Azure AD administrator for SQL Server. ## SYNTAX ``` -Set-AzSqlServerActiveDirectoryAdministrator [-DisplayName] [[-ObjectId] ] [-ServerName] - [-ResourceGroupName] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] +Set-AzSqlServerActiveDirectoryAdministrator [-DisplayName] [[-ObjectId] ] + [[-IsAzureOnlyAuthentication] ] [-ServerName] [-ResourceGroupName] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -98,6 +98,21 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -IsAzureOnlyAuthentication +Specifies if only Azure Active Directory authentication is allowed. + +```yaml +Type: System.Nullable`1[System.Boolean] +Parameter Sets: (All) +Aliases: + +Required: False +Position: 4 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### -ObjectId Specifies the unique ID of the Azure AD administrator that this cmdlet provisions. If the display name is not unique, you must specify a value for this parameter. @@ -196,6 +211,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-AzSqlServerActiveDirectoryAdministrator](./Remove-AzSqlServerActiveDirectoryAdministrator.md) +[Disable-AzSqlServerActiveDirectoryOnlyAuthentication](./Disable-AzSqlServerActiveDirectoryOnlyAuthentication.md) + [SQL Database Documentation](https://docs.microsoft.com/azure/sql-database/) From 3b235442f1dbbdf5aecd12144b3096afbb884cd6 Mon Sep 17 00:00:00 2001 From: xaliciayang Date: Tue, 25 Feb 2020 16:05:25 -0800 Subject: [PATCH 06/61] fixes for managed database backups and restore manage db cmdlets --- ...lManagedDatabaseLongTermRetentionBackup.cs | 27 ++++++++++--------- .../Cmdlet/RestoreAzureSqlManagedDatabase.cs | 2 +- 2 files changed, 15 insertions(+), 14 deletions(-) diff --git a/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/GetAzureSqlManagedDatabaseLongTermRetentionBackup.cs b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/GetAzureSqlManagedDatabaseLongTermRetentionBackup.cs index dffdaf6194c1..d18fc7ba073a 100644 --- a/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/GetAzureSqlManagedDatabaseLongTermRetentionBackup.cs +++ b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/GetAzureSqlManagedDatabaseLongTermRetentionBackup.cs @@ -17,6 +17,7 @@ using System.Collections.Generic; using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.Sql.ManagedDatabase.Model; using Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model; using Microsoft.Azure.Commands.Sql.Database.Model; using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; @@ -101,7 +102,7 @@ public class GetAzureSqlManagedDatabaseLongTermRetentionBackup : AzureSqlManaged ValueFromPipeline = true, HelpMessage = "The database object to get backups for.")] [ValidateNotNullOrEmpty] - public AzureSqlDatabaseModel InputObject { get; set; } + public AzureSqlManagedDatabaseModel InputObject { get; set; } /// /// Gets or sets the Database Resource ID to get backups for. @@ -124,26 +125,26 @@ public class GetAzureSqlManagedDatabaseLongTermRetentionBackup : AzureSqlManaged [Parameter(Mandatory = true, ParameterSetName = InstanceNameSet, Position = 1, - HelpMessage = "The name of the Azure SQL Server the backups are under.")] + HelpMessage = "The name of the Managed Instance the backups are under.")] [Parameter(Mandatory = true, ParameterSetName = BackupNameSet, Position = 1, - HelpMessage = "The name of the Azure SQL Server the backups are under.")] - [ResourceNameCompleter("Microsoft.Sql/servers", "ResourceGroupName")] + HelpMessage = "The name of the Managed Instance the backups are under.")] + [ResourceNameCompleter("Microsoft.Sql/managedInstances", "ResourceGroupName")] [ValidateNotNullOrEmpty] - public string ServerName { get; set; } + public string ManagedInstanceName { get; set; } /// /// Gets or sets the name of the database. /// [Parameter(Mandatory = false, ParameterSetName = InstanceNameSet, - HelpMessage = "The name of the Azure SQL Server the backups are under.")] + HelpMessage = "The name of the Managed Instance the backups are under.")] [Parameter(Mandatory = true, ParameterSetName = BackupNameSet, Position = 2, - HelpMessage = "The name of the Azure SQL Database the backup is from.")] - [ResourceNameCompleter("Microsoft.Sql/servers/databases", "ResourceGroupName", "ServerName")] + HelpMessage = "The name of the Managed Instance the backup is from.")] + [ResourceNameCompleter("Microsoft.Sql/managedInstances/databases", "ResourceGroupName", "ManagedInstanceName")] [ValidateNotNullOrEmpty] public string DatabaseName { get; set; } @@ -235,8 +236,8 @@ protected override IEnumerable - /// No changes to persist to server + /// No changes to persist to managed instance /// /// The output of apply user input to model /// The input entity diff --git a/src/Sql/Sql/ManagedDatabase/Cmdlet/RestoreAzureSqlManagedDatabase.cs b/src/Sql/Sql/ManagedDatabase/Cmdlet/RestoreAzureSqlManagedDatabase.cs index 969e9f458718..f9bcf660fd71 100644 --- a/src/Sql/Sql/ManagedDatabase/Cmdlet/RestoreAzureSqlManagedDatabase.cs +++ b/src/Sql/Sql/ManagedDatabase/Cmdlet/RestoreAzureSqlManagedDatabase.cs @@ -125,7 +125,7 @@ public class RestoreAzureRmSqlManagedDatabase ParameterSetName = LtrBackupRestoreFromInputParametersSet, Mandatory = true, HelpMessage = "Restore from a Long Term Retention backup.")] - public SwitchParameter FromLtrBackup { get; set; } + public SwitchParameter FromLongTermRetentionBackup { get; set; } /// /// Gets or sets the source subscription id. From 89c444a963e23868ad380a350c7c159376fa3bec Mon Sep 17 00:00:00 2001 From: xaliciayang Date: Tue, 25 Feb 2020 21:59:35 -0800 Subject: [PATCH 07/61] add managed instance LTR tests --- .../ManagedDatabaseBackupTests.cs | 21 +++ .../ManagedDatabaseBackupTests.ps1 | 155 +++++++++++++++++- 2 files changed, 172 insertions(+), 4 deletions(-) diff --git a/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.cs b/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.cs index dbfc6790c092..676ecbea2ca5 100644 --- a/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.cs +++ b/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.cs @@ -51,5 +51,26 @@ public void ManagedDeletedDatabaseShortTermRetentionPolicy() { RunPowerShellTest("Test-ManagedDeletedDatabaseShortTermRetentionPolicy"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestManagedInstanceLongTermRetentionPolicy() + { + RunPowerShellTest("Test-ManagedInstanceLongTermRetentionPolicy"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestManagedInstanceLongTermRetentionBackup() + { + RunPowerShellTest("Test-ManagedInstanceLongTermRetentionBackup"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestManagedInstanceLongTermRetentionResourceGroupBasedBackup() + { + RunPowerShellTest("Test-ManagedInstanceLongTermRetentionResourceGroupBasedBackup"); + } } } diff --git a/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.ps1 b/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.ps1 index 400a360840f2..6c64699e6080 100644 --- a/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.ps1 +++ b/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.ps1 @@ -23,7 +23,7 @@ function Test-ManagedLiveDatabaseShortTermRetentionPolicy $vnetName = "cl_initial" $subnetName = "Cool" - # Setup VNET + # Setup VNET $virtualNetwork1 = CreateAndGetVirtualNetworkForManagedInstance $vnetName $subnetName $rg.Location $subnetId = $virtualNetwork1.Subnets.where({ $_.Name -eq $subnetName })[0].Id @@ -95,7 +95,7 @@ function Test-ManagedDeletedDatabaseShortTermRetentionPolicy $vnetName = "cl_initial" $subnetName = "Cool" - # Setup VNET + # Setup VNET $virtualNetwork1 = CreateAndGetVirtualNetworkForManagedInstance $vnetName $subnetName $rg.Location $subnetId = $virtualNetwork1.Subnets.where({ $_.Name -eq $subnetName })[0].Id @@ -130,7 +130,7 @@ function Test-ManagedDeletedDatabaseShortTermRetentionPolicy Remove-AzSqlInstanceDatabase -ResourceGroupName $rg.ResourceGroupName -InstanceName $managedInstance.ManagedInstanceName -Name $managedDatabaseName -Force # Get deleted database - $deletedDatabases = Get-AzSqlDeletedInstanceDatabaseBackup -ResourceGroupName $rg.ResourceGroupName -InstanceName $managedInstance.ManagedInstanceName -DatabaseName $managedDatabaseName + $deletedDatabases = Get-AzSqlDeletedInstanceDatabaseBackup -ResourceGroupName $rg.ResourceGroupName -InstanceName $managedInstance.ManagedInstanceName -DatabaseName $managedDatabaseName # Set retention to 29, test default parameter providing. $retention = 29 @@ -173,4 +173,151 @@ function Test-ManagedDeletedDatabaseShortTermRetentionPolicy { Remove-ResourceGroupForTest $rg } -} \ No newline at end of file +} +<# + .SYNOPSIS + Test long term retention for managed databases. +#> +function Test-ManagedInstanceLongTermRetentionPolicy($location = "southeastasia") +{ + # Setup + $resourceGroup = Create-ResourceGroupForTest + $resourceGroupName = $resourceGroup.ResourceGroupName + $managedInstance = Create-ManagedInstanceForTest + $managedInstanceName = $managedInstance.ManagedInstanceName + $weeklyRetention = "P1W" + $emptyRetention = "PT0S" + + try + { + # create test database + $databaseName = "test_ltr_policy_database" + $database = New-AzSqlInstanceDatabase -ResourceGroupName $resourceGroupName -ManagedInstanceName $managedInstanceName -DatabaseName $databaseName + + Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy -ResourceGroupName $resourceGroupName -ManagedInstanceName $managedInstanceName -DatabaseName $databaseName -WeeklyRetention $weeklyRetention + $policy = Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy -ResourceGroup $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $databaseName + Assert-AreEqual $policy.WeeklyRetention $weeklyRetention + Assert-AreEqual $policy.MonthlyRetention $emptyRetention + Assert-AreEqual $policy.YearlyRetention $emptyRetention + } + finally + { + Remove-ResourceGroupForTest $resourceGroup + } +} + +<# + .SYNOPSIS + Test long term retention backup commands for managed databases. +#> +function Test-ManagedInstanceLongTermRetentionBackup +{ + + # MANUAL INSTRUCTIONS + # Create a server and database and fill in the appropriate information below + # Set the weekly retention on the database so that the first backup gets picked up, for example: + # Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy -ResourceGroup $resourceGroup -ServerName $serverName -DatabaseName $databaseName -WeeklyRetention P1W + # Wait about 18 hours until it gets properly copied and you see the backup when run get backups, for example: + # Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -ManagedinstanceName $managedInstanceName -DatabaeName $databaseName + $resourceGroup = "cl_stage_sea_cv" + $locationName = "southeastasia" + $managedInstanceName = "seageodr-gen5-gp" + $databaseName = "test" + $weeklyRetention1 = "P1W" + $weeklyRetention2 = "P2W" + $restoredDatabase = "ps_test_restore" + $databaseWithRemovableBackup = "test"; + + # Basic Get Tests + $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName + Assert-AreNotEqual $backups.Count 0 + $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -ManagedInstanceName $managedInstanceName + Assert-AreNotEqual $backups.Count 0 + $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -ManagedInstanceName $managedInstanceName -DatabaseName $databaseName + Assert-AreNotEqual $backups.Count 0 + $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -ManagedInstanceName $managedInstanceName -DatabaseName $databaseName -BackupName $backups[0].BackupName + Assert-AreNotEqual $backups.Count 0 + + # Test Get Piping + $backups = Get-AzSqlInstanceDatabase -ResourceGroup $resourceGroup -ManagedInstanceName $managedInstanceName -DatabaseName $databaseName | Get-AzSqlInstanceDatabaseLongTermRetentionBackup + Assert-AreNotEqual $backups.Count 0 + $backups = Get-AzSqlInstanceDatabase -ResourceGroup $resourceGroup -ManagedInstanceName $managedInstanceName -DatabaseName $databaseName | Get-AzSqlInstanceDatabaseLongTermRetentionBackup -BackupName $backups[0].BackupName + Assert-AreNotEqual $backups.Count 0 + + # Test Get Optional Parameters + $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -ManagedInstanceName $managedInstanceName -DatabaseName $databaseName -OnlyLatestPerDatabase -DatabaseState All + Assert-AreNotEqual $backups.Count 0 + + # Test Get Piping with Optional Parameters + $backups = Get-AzSqlInstanceDatabase -ResourceGroup $resourceGroup -ManagedInstanceName $managedInstanceName -DatabaseName $databaseName | Get-AzSqlInstanceDatabaseLongTermRetentionBackup -OnlyLatestPerDatabase + Assert-AreNotEqual $backups.Count 0 + + # Restore Test + $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName + $db = Restore-AzSqlInstanceDatabase -FromLongTermRetentionBackup -ResourceId $backups[0].ResourceId -ResourceGroupName $resourceGroup -ManagedInstanceName $managedInstanceName -TargetDatabaseName $restoredDatabase + Assert-AreEqual $db.DatabaseName $restoredDatabase + + # Test Remove with Piping + #Get-AzSqlDatabaseLongTermRetentionBackup -Location $locationName -ManagedInstanceName $serverName -DatabaseName $databaseWithRemovableBackup -BackupName $backups[0].BackupName | Remove-AzSqlDatabaseLongTermRetentionBackup + $backups = Get-AzSqlInstanceDatabase -ResourceGroup $resourceGroup -ManagedInstanceName $managedInstanceName -DatabaseName $databaseWithRemovableBackup | Get-AzSqlInstanceDatabaseLongTermRetentionBackup -OnlyLatestPerDatabase + Assert-AreEqual $backups.Count 0 + + # drop the restored db + Remove-AzSqlInstanceDatabase -ResourceGroup $resourceGroup -ManagedInstanceName $managedInstanceName -DatabaseName $restoredDatabase +} + +<# + .SYNOPSIS + Test long term retention backup commands for managed databases (using resource group). +#> +function Test-ManagedInstanceLongTermRetentionResourceGroupBasedBackup +{ + # MANUAL INSTRUCTIONS + # Create a server and database and fill in the appropriate information below + # Set the weekly retention on the database so that the first backup gets picked up, for example: + # Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy -ResourceGroup $resourceGroup -ServerName $serverName -DatabaseName $databaseName -WeeklyRetention P1W + # Wait about 18 hours until it gets properly copied and you see the backup when run get backups, for example: + # Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -ServerName $serverName -DatabaeName $databaseName -ResourceGroupName $resourceGroup + $resourceGroup = "cl_stage_sea_cv" + $locationName = "southeastasia" + $managedInstanceName = "seageodr-gen5-gp" + $databaseName = "test" + $restoredDatabase = "ps_test_restore_rg" + $databaseWithRemovableBackup = "test"; + + # Basic Get Tests + $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -ResourceGroupName $resourceGroup + Assert-AreNotEqual $backups.Count 0 + $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -ManagedInstanceName $managedInstanceName -ResourceGroupName $resourceGroup + Assert-AreNotEqual $backups.Count 0 + $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -ManagedInstanceName $managedInstanceName -DatabaseName $databaseName -ResourceGroupName $resourceGroup + Assert-AreNotEqual $backups.Count 0 + $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -ManagedInstanceName $managedInstanceName -DatabaseName $databaseName -BackupName $backups[0].BackupName -ResourceGroupName $resourceGroup + Assert-AreNotEqual $backups.Count 0 + + # Test Get Piping + $backups = Get-AzSqlInstanceDatabase -ResourceGroup $resourceGroup -ManagedInstanceName $managedInstanceName -DatabaseName $databaseName | Get-AzSqlInstanceDatabaseLongTermRetentionBackup + Assert-AreNotEqual $backups.Count 0 + $backups = Get-AzSqlInstanceDatabase -ResourceGroup $resourceGroup -ManagedInstanceName $managedInstanceName -DatabaseName $databaseName | Get-AzSqlInstanceDatabaseLongTermRetentionBackup -BackupName $backups[0].BackupName + Assert-AreNotEqual $backups.Count 0 + + # Test Get Optional Parameters + $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -ManagedInstanceName $managedInstanceName -DatabaseName $databaseName -ResourceGroupName $resourceGroup -OnlyLatestPerDatabase -DatabaseState All + Assert-AreNotEqual $backups.Count 0 + + # Test Get Piping with Optional Parameters + $backups = Get-AzSqlInstanceDatabase -ResourceGroup $resourceGroup -ManagedInstanceName $managedInstanceName -DatabaseName $databaseName | Get-AzSqlInstanceDatabaseLongTermRetentionBackup -OnlyLatestPerDatabase + Assert-AreNotEqual $backups.Count 0 + + # Restore Test + $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -ResourceGroupName $resourceGroup + $db = Restore-AzSqlInstanceDatabase -FromLongTermRetentionBackup -ResourceId $backups[0].ResourceId -ResourceGroupName $resourceGroup -ManagedInstanceName $managedInstanceName -TargetDatabaseName $restoredDatabase + Assert-AreEqual $db.DatabaseName $restoredDatabase + + # Test Remove with Piping + Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -ManagedInstanceName $managedInstanceName -DatabaseName $databaseWithRemovableBackup -BackupName $backups[0].BackupName -ResourceGroupName $resourceGroup | Remove-AzSqlInstanceDatabaseLongTermRetentionBackup -Force + + # drop the restored db + Remove-AzSqlInstanceDatabase -ResourceGroup $resourceGroup -ManagedInstanceName $managedInstanceName -DatabaseName $restoredDatabase -Force +} + From 9b0f2b5d0903d3b950b4ce92f4948f7840584d7e Mon Sep 17 00:00:00 2001 From: xaliciayang Date: Fri, 28 Feb 2020 15:19:55 -0800 Subject: [PATCH 08/61] fixing PR issues, changing lots of 'servers' to 'managedInstances' where needed --- .../ManagedDatabaseBackupTests.ps1 | 10 +-- src/Sql/Sql.Test/Sql.Test.csproj | 9 +-- ...lManagedDatabaseLongTermRetentionBackup.cs | 12 +-- ...lManagedDatabaseLongTermRetentionBackup.cs | 12 +-- ...abaseBackupLongTermRetentionPolicyModel.cs | 19 ----- ...gedDatabaseLongTermRetentionBackupModel.cs | 8 +- .../AzureSqlManagedDatabaseBackupAdapter.cs | 78 +++++++++---------- ...ureSqlManagedDatabaseBackupCommunicator.cs | 52 ++++++------- .../Cmdlet/RestoreAzureSqlManagedDatabase.cs | 2 +- src/Sql/Sql/Properties/Resources.Designer.cs | 22 ++++++ src/Sql/Sql/Sql.csproj | 2 +- 11 files changed, 110 insertions(+), 116 deletions(-) diff --git a/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.ps1 b/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.ps1 index 6c64699e6080..8fd33ae4fd8e 100644 --- a/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.ps1 +++ b/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.ps1 @@ -186,7 +186,7 @@ function Test-ManagedInstanceLongTermRetentionPolicy($location = "southeastasia" $managedInstance = Create-ManagedInstanceForTest $managedInstanceName = $managedInstance.ManagedInstanceName $weeklyRetention = "P1W" - $emptyRetention = "PT0S" + $zeroRetention = "PT0S" try { @@ -197,8 +197,8 @@ function Test-ManagedInstanceLongTermRetentionPolicy($location = "southeastasia" Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy -ResourceGroupName $resourceGroupName -ManagedInstanceName $managedInstanceName -DatabaseName $databaseName -WeeklyRetention $weeklyRetention $policy = Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy -ResourceGroup $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $databaseName Assert-AreEqual $policy.WeeklyRetention $weeklyRetention - Assert-AreEqual $policy.MonthlyRetention $emptyRetention - Assert-AreEqual $policy.YearlyRetention $emptyRetention + Assert-AreEqual $policy.MonthlyRetention $zeroRetention + Assert-AreEqual $policy.YearlyRetention $zeroRetention } finally { @@ -226,7 +226,7 @@ function Test-ManagedInstanceLongTermRetentionBackup $weeklyRetention1 = "P1W" $weeklyRetention2 = "P2W" $restoredDatabase = "ps_test_restore" - $databaseWithRemovableBackup = "test"; + $databaseWithRemovableBackup = "target1"; # Basic Get Tests $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName @@ -258,7 +258,7 @@ function Test-ManagedInstanceLongTermRetentionBackup Assert-AreEqual $db.DatabaseName $restoredDatabase # Test Remove with Piping - #Get-AzSqlDatabaseLongTermRetentionBackup -Location $locationName -ManagedInstanceName $serverName -DatabaseName $databaseWithRemovableBackup -BackupName $backups[0].BackupName | Remove-AzSqlDatabaseLongTermRetentionBackup + Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -ManagedInstanceName $serverName -DatabaseName $databaseWithRemovableBackup -BackupName $backups[0].BackupName | Remove-AzSqlInstanceDatabaseLongTermRetentionBackup $backups = Get-AzSqlInstanceDatabase -ResourceGroup $resourceGroup -ManagedInstanceName $managedInstanceName -DatabaseName $databaseWithRemovableBackup | Get-AzSqlInstanceDatabaseLongTermRetentionBackup -OnlyLatestPerDatabase Assert-AreEqual $backups.Count 0 diff --git a/src/Sql/Sql.Test/Sql.Test.csproj b/src/Sql/Sql.Test/Sql.Test.csproj index 2b1e7df4a6d9..b44c981dd89f 100644 --- a/src/Sql/Sql.Test/Sql.Test.csproj +++ b/src/Sql/Sql.Test/Sql.Test.csproj @@ -19,17 +19,10 @@ - + - - - - ..\..\..\..\azure-sdk-for-net\artifacts\bin\Microsoft.Azure.Management.Sql\Debug\net452\Microsoft.Azure.Management.Sql.dll - - - diff --git a/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/GetAzureSqlManagedDatabaseLongTermRetentionBackup.cs b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/GetAzureSqlManagedDatabaseLongTermRetentionBackup.cs index d18fc7ba073a..445532285aa0 100644 --- a/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/GetAzureSqlManagedDatabaseLongTermRetentionBackup.cs +++ b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/GetAzureSqlManagedDatabaseLongTermRetentionBackup.cs @@ -68,24 +68,24 @@ public class GetAzureSqlManagedDatabaseLongTermRetentionBackup : AzureSqlManaged [Parameter(Mandatory = true, ParameterSetName = LocationSet, Position = 0, - HelpMessage = "The location of the backups' source server.")] + HelpMessage = "The location of the backups' source Managed Instance.")] [Parameter(Mandatory = true, ParameterSetName = InstanceNameSet, Position = 0, - HelpMessage = "The location of the backups' source server.")] + HelpMessage = "The location of the backups' source Managed Instance.")] [Parameter(Mandatory = true, ParameterSetName = BackupNameSet, Position = 0, - HelpMessage = "The location of the backups' source server.")] + HelpMessage = "The location of the backups' source Managed Instance.")] [Parameter(Mandatory = true, ParameterSetName = GetBackupByResourceIdSet, Position = 1, - HelpMessage = "The location of the backups' source server.")] + HelpMessage = "The location of the backups' source Managed Instance.")] [Parameter(Mandatory = true, ParameterSetName = GetBackupsByResourceIdSet, Position = 1, - HelpMessage = "The location of the backups' source server.")] - [LocationCompleter("Microsoft.Sql/locations/longTermRetentionServers/longTermRetentionDatabases/longTermRetentonBackups")] + HelpMessage = "The location of the backups' source Managed Instance.")] + [LocationCompleter("Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentonManagedInstanceBackups")] public string Location { get; set; } /// diff --git a/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/RemoveAzureSqlManagedDatabaseLongTermRetentionBackup.cs b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/RemoveAzureSqlManagedDatabaseLongTermRetentionBackup.cs index 8f01d2567d6d..89fc1ae7fb1d 100644 --- a/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/RemoveAzureSqlManagedDatabaseLongTermRetentionBackup.cs +++ b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/RemoveAzureSqlManagedDatabaseLongTermRetentionBackup.cs @@ -48,9 +48,9 @@ public class RemoveAzureSqlManagedDatabaseLongTermRetentionBackup : AzureSqlMana [Parameter(Mandatory = true, ParameterSetName = RemoveBackupDefaultSet, Position = 0, - HelpMessage = "The location of the backups' source server.")] + HelpMessage = "The location of the backups' source Managed Instance.")] [ValidateNotNullOrEmpty] - [LocationCompleter("Microsoft.Sql/locations/longTermRetentionServers")] + [LocationCompleter("Microsoft.Sql/locations/longTermRetentionManagedInstance")] public virtual string Location { get; set; } /// @@ -71,7 +71,7 @@ public class RemoveAzureSqlManagedDatabaseLongTermRetentionBackup : AzureSqlMana ParameterSetName = RemoveBackupDefaultSet, Position = 2, HelpMessage = "The name of the Managed Database the backup is from.")] - [ResourceNameCompleter("Microsoft.Sql/servers/databases", "ResourceGroupName", "ServerName")] + [ResourceNameCompleter("Microsoft.Sql/managedInstances/databases", "ResourceGroupName", "ManagedInstanceName")] [ValidateNotNullOrEmpty] public string DatabaseName { get; set; } @@ -180,7 +180,7 @@ public override void ExecuteCmdlet() if (InputObject != null) { Location = InputObject.Location; - ManagedInstanceName = InputObject.ServerName; + ManagedInstanceName = InputObject.ManagedInstanceName; DatabaseName = InputObject.DatabaseName; BackupName = InputObject.BackupName; ResourceGroupName = InputObject.ResourceGroupName; @@ -193,8 +193,8 @@ public override void ExecuteCmdlet() if (ShouldProcess(this.BackupName)) { if (Force.IsPresent || ShouldContinue( - string.Format(CultureInfo.InvariantCulture, Properties.Resources.RemoveAzureSqlDatabaseLongTermRetentionBackupDescription, this.BackupName, this.DatabaseName, this.ManagedInstanceName, this.Location), - string.Format(CultureInfo.InvariantCulture, Properties.Resources.RemoveAzureSqlDatabaseLongTermRetentionBackupWarning, this.BackupName, this.DatabaseName, this.ManagedInstanceName, this.Location))) + string.Format(CultureInfo.InvariantCulture, Properties.Resources.RemoveAzureSqlInstanceDatabaseLongTermRetentionBackupDescription, this.BackupName, this.DatabaseName, this.ManagedInstanceName, this.Location), + string.Format(CultureInfo.InvariantCulture, Properties.Resources.RemoveAzureSqlInstanceDatabaseLongTermRetentionBackupWarning, this.BackupName, this.DatabaseName, this.ManagedInstanceName, this.Location))) { base.ExecuteCmdlet(); } diff --git a/src/Sql/Sql/ManagedDatabase Backup/Model/AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel.cs b/src/Sql/Sql/ManagedDatabase Backup/Model/AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel.cs index 4bc81e743a1d..3a9d5295071b 100644 --- a/src/Sql/Sql/ManagedDatabase Backup/Model/AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel.cs +++ b/src/Sql/Sql/ManagedDatabase Backup/Model/AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel.cs @@ -59,24 +59,5 @@ public class AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel /// Gets or sets the location /// public string Location { get; set; } - - ///// - ///// Construct AzureSqlManagedDatabaseBackupShortTermRetentionPolicyModel object - ///// - ///// Resource group - ///// Managed Instance name - ///// Managed Instance name - ///// Managed Database object - ///// Deletion date of the database, if it is deleted - //public AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel(string resourceGroup, string managedInstanceName, string managedDatabaseName, string weeklyRetention, string monthlyRetention, string yearlyRetention, int? weekOfYear) - //{ - // ResourceGroupName = resourceGroup; - // ManagedInstanceName = managedInstanceName; - // DatabaseName = managedDatabaseName; - // WeeklyRetention = weeklyRetention; - // MonthlyRetention = monthlyRetention; - // YearlyRetention = yearlyRetention; - // WeekOfYear = weekOfYear; - //} } } diff --git a/src/Sql/Sql/ManagedDatabase Backup/Model/AzureSqlManagedDatabaseLongTermRetentionBackupModel.cs b/src/Sql/Sql/ManagedDatabase Backup/Model/AzureSqlManagedDatabaseLongTermRetentionBackupModel.cs index dd8bbeabb8d5..9c9412ff03b2 100644 --- a/src/Sql/Sql/ManagedDatabase Backup/Model/AzureSqlManagedDatabaseLongTermRetentionBackupModel.cs +++ b/src/Sql/Sql/ManagedDatabase Backup/Model/AzureSqlManagedDatabaseLongTermRetentionBackupModel.cs @@ -58,14 +58,14 @@ public class AzureSqlManagedDatabaseLongTermRetentionBackupModel public string ResourceId { get; set; } /// - /// Gets or sets the server name. + /// Gets or sets the Managed Instance name. /// - public string ServerName { get; set; } + public string ManagedInstanceName { get; set; } /// - /// Gets or sets the server create time. + /// Gets or sets the instance create time. /// - public DateTime? ServerCreateTime { get; set; } + public DateTime? InstanceCreateTime { get; set; } /// /// Gets or sets the resource group name. diff --git a/src/Sql/Sql/ManagedDatabase Backup/Services/AzureSqlManagedDatabaseBackupAdapter.cs b/src/Sql/Sql/ManagedDatabase Backup/Services/AzureSqlManagedDatabaseBackupAdapter.cs index 1ca5f6438070..8394e2f6d2ea 100644 --- a/src/Sql/Sql/ManagedDatabase Backup/Services/AzureSqlManagedDatabaseBackupAdapter.cs +++ b/src/Sql/Sql/ManagedDatabase Backup/Services/AzureSqlManagedDatabaseBackupAdapter.cs @@ -232,6 +232,42 @@ internal AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel GetManagedDat }; } + /// + /// Create or update a backup LongTermRetention policy for a Managed Database + /// + /// The name of the resource group + /// The name of the Azure SQL Server + /// The name of the Azure SQL Database + /// A backup LongTermRetention policy + internal AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel SetManagedDatabaseBackupLongTermRetentionPolicy( + string resourceGroup, + string managedInstanceName, + string databaseName, + AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel model) + { + ManagedInstanceLongTermRetentionPolicy response = Communicator.SetManagedDatabaseLongTermRetentionPolicy( + resourceGroup, + managedInstanceName, + databaseName, + new ManagedInstanceLongTermRetentionPolicy() + { + WeeklyRetention = model.WeeklyRetention, + MonthlyRetention = model.MonthlyRetention, + YearlyRetention = model.YearlyRetention, + WeekOfYear = model.WeekOfYear + }); + return new AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel() + { + ResourceGroupName = resourceGroup, + ManagedInstanceName = managedInstanceName, + DatabaseName = databaseName, + WeeklyRetention = response.WeeklyRetention, + MonthlyRetention = response.MonthlyRetention, + YearlyRetention = response.YearlyRetention, + WeekOfYear = response.WeekOfYear + }; + } + private AzureSqlManagedDatabaseLongTermRetentionBackupModel GetBackupModel(ManagedInstanceLongTermRetentionBackup backup, string locationName) { return new AzureSqlManagedDatabaseLongTermRetentionBackupModel() @@ -243,8 +279,8 @@ private AzureSqlManagedDatabaseLongTermRetentionBackupModel GetBackupModel(Manag DatabaseName = backup.DatabaseName, Location = locationName, ResourceId = backup.Id, - ServerCreateTime = backup.ManagedInstanceCreateTime, - ServerName = backup.ManagedInstanceName, + InstanceCreateTime = backup.ManagedInstanceCreateTime, + ManagedInstanceName = backup.ManagedInstanceName, ResourceGroupName = GetResourceGroupNameFromResourceId(backup.Id) }; } @@ -308,43 +344,5 @@ internal void RemoveManagedDatabaseLongTermRetentionBackup( { Communicator.RemoveManagedDatabaseLongTermRetentionBackup(locationName, serverName, databaseName, backupName, resourceGroupName); } - - /// - /// Create or update a backup LongTermRetention policy for a Managed Database - /// - /// The name of the resource group - /// The name of the Azure SQL Server - /// The name of the Azure SQL Database - /// A backup LongTermRetention policy - internal AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel SetManagedDatabaseBackupLongTermRetentionPolicy( - string resourceGroup, - string managedInstanceName, - string databaseName, - AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel model) - { - ManagedInstanceLongTermRetentionPolicy response = Communicator.SetManagedDatabaseLongTermRetentionPolicy( - resourceGroup, - managedInstanceName, - databaseName, - new ManagedInstanceLongTermRetentionPolicy() - { - WeeklyRetention = model.WeeklyRetention, - MonthlyRetention = model.MonthlyRetention, - YearlyRetention = model.YearlyRetention, - WeekOfYear = model.WeekOfYear - }); - return new AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel() - { - ResourceGroupName = resourceGroup, - ManagedInstanceName = managedInstanceName, - DatabaseName = databaseName, - WeeklyRetention = response.WeeklyRetention, - MonthlyRetention = response.MonthlyRetention, - YearlyRetention = response.YearlyRetention, - WeekOfYear = response.WeekOfYear - }; - } - - } } diff --git a/src/Sql/Sql/ManagedDatabase Backup/Services/AzureSqlManagedDatabaseBackupCommunicator.cs b/src/Sql/Sql/ManagedDatabase Backup/Services/AzureSqlManagedDatabaseBackupCommunicator.cs index 01ff289afe52..5dadd53226b5 100644 --- a/src/Sql/Sql/ManagedDatabase Backup/Services/AzureSqlManagedDatabaseBackupCommunicator.cs +++ b/src/Sql/Sql/ManagedDatabase Backup/Services/AzureSqlManagedDatabaseBackupCommunicator.cs @@ -137,29 +137,29 @@ public IList ListDeletedDatabaseBackups(string /// Get a restorable deleted database for a given Sql Azure Database /// /// The name of the resource group - /// The name of the Azure SQL Server - /// The name of the Azure SQL database + /// The name of the Managed Instance + /// The name of the Managed database /// List of restore points - public RestorableDroppedManagedDatabase GetDeletedDatabaseBackup(string resourceGroupName, string serverName, string databaseName) + public RestorableDroppedManagedDatabase GetDeletedDatabaseBackup(string resourceGroupName, string instanceName, string databaseName) { - return GetCurrentSqlClient().RestorableDroppedManagedDatabases.Get(resourceGroupName, serverName, databaseName); + return GetCurrentSqlClient().RestorableDroppedManagedDatabases.Get(resourceGroupName, instanceName, databaseName); } /// /// Get a backup LongTermRetention policy for a Azure SQL Database /// /// The name of the resource group - /// The name of the Azure SQL Server - /// The name of the Azure SQL Database + /// The name of the Managed Instance + /// The name of the Managed Database /// A backup LongTermRetention policy public ManagedInstanceLongTermRetentionPolicy GetManagedDatabaseLongTermRetentionPolicy( string resourceGroupName, - string serverName, + string instanceName, string databaseName) { return GetCurrentSqlClient().ManagedInstanceLongTermRetentionPolicies.Get( resourceGroupName, - serverName, + instanceName, databaseName); } @@ -167,16 +167,16 @@ public ManagedInstanceLongTermRetentionPolicy GetManagedDatabaseLongTermRetentio /// Sets a database's Long Term Retention policy. /// /// The resource group name. - /// The server name. + /// The instance name. /// The database name. /// The Long Term Retention policy to apply. public Management.Sql.Models.ManagedInstanceLongTermRetentionPolicy SetManagedDatabaseLongTermRetentionPolicy( string resourceGroup, - string serverName, + string instanceName, string databaseName, ManagedInstanceLongTermRetentionPolicy policy) { - return GetCurrentSqlClient().ManagedInstanceLongTermRetentionPolicies.CreateOrUpdate(resourceGroup, serverName, databaseName, policy); + return GetCurrentSqlClient().ManagedInstanceLongTermRetentionPolicies.CreateOrUpdate(resourceGroup, instanceName, databaseName, policy); } @@ -184,24 +184,24 @@ public Management.Sql.Models.ManagedInstanceLongTermRetentionPolicy SetManagedDa /// Gets the Long Term Retention backup. /// /// The location name. - /// The server name. + /// The instance name. /// The database name. /// The backup name. /// The resource group name public ManagedInstanceLongTermRetentionBackup GetManagedDatabaseLongTermRetentionBackup( string locationName, - string serverName, + string instanceName, string databaseName, string backupName, string resourceGroupName) { if (string.IsNullOrWhiteSpace(resourceGroupName)) { - return GetCurrentSqlClient().LongTermRetentionManagedInstanceBackups.Get(locationName, serverName, databaseName, backupName); + return GetCurrentSqlClient().LongTermRetentionManagedInstanceBackups.Get(locationName, instanceName, databaseName, backupName); } else { - return GetCurrentSqlClient().LongTermRetentionManagedInstanceBackups.GetByResourceGroup(resourceGroupName, locationName, serverName, databaseName, backupName); + return GetCurrentSqlClient().LongTermRetentionManagedInstanceBackups.GetByResourceGroup(resourceGroupName, locationName, instanceName, databaseName, backupName); } } @@ -209,14 +209,14 @@ public ManagedInstanceLongTermRetentionBackup GetManagedDatabaseLongTermRetentio /// Gets the Long Term Retention backups. /// /// The location name. - /// The server name. + /// The instance name. /// The database name. /// The resource group name /// Whether or not to only get the latest backup per database. /// The state of databases to get backups for: All, Live, Deleted. public Rest.Azure.IPage GetManagedDatabaseLongTermRetentionBackups( string locationName, - string serverName, + string instanceName, string databaseName, string resourceGroupName, bool? onlyLatestPerDatabase, @@ -226,22 +226,22 @@ public Rest.Azure.IPage GetManagedDataba { if (string.IsNullOrWhiteSpace(resourceGroupName)) { - return GetCurrentSqlClient().LongTermRetentionManagedInstanceBackups.ListByDatabase(locationName, serverName, databaseName, onlyLatestPerDatabase, databaseState); + return GetCurrentSqlClient().LongTermRetentionManagedInstanceBackups.ListByDatabase(locationName, instanceName, databaseName, onlyLatestPerDatabase, databaseState); } else { - return GetCurrentSqlClient().LongTermRetentionManagedInstanceBackups.ListByResourceGroupDatabase(resourceGroupName, locationName, serverName, databaseName, onlyLatestPerDatabase, databaseState); + return GetCurrentSqlClient().LongTermRetentionManagedInstanceBackups.ListByResourceGroupDatabase(resourceGroupName, locationName, instanceName, databaseName, onlyLatestPerDatabase, databaseState); } } - else if (!string.IsNullOrWhiteSpace(serverName)) + else if (!string.IsNullOrWhiteSpace(instanceName)) { if (string.IsNullOrWhiteSpace(resourceGroupName)) { - return GetCurrentSqlClient().LongTermRetentionManagedInstanceBackups.ListByInstance(locationName, serverName, onlyLatestPerDatabase, databaseState); + return GetCurrentSqlClient().LongTermRetentionManagedInstanceBackups.ListByInstance(locationName, instanceName, onlyLatestPerDatabase, databaseState); } else { - return GetCurrentSqlClient().LongTermRetentionManagedInstanceBackups.ListByResourceGroupInstance(resourceGroupName, locationName, serverName, onlyLatestPerDatabase, databaseState); + return GetCurrentSqlClient().LongTermRetentionManagedInstanceBackups.ListByResourceGroupInstance(resourceGroupName, locationName, instanceName, onlyLatestPerDatabase, databaseState); } } else @@ -261,24 +261,24 @@ public Rest.Azure.IPage GetManagedDataba /// Removes a Long Term Retention backup. /// /// The location name. - /// The server name. + /// The instance name. /// The database name. /// The backup name. /// The resource group name public void RemoveManagedDatabaseLongTermRetentionBackup( string locationName, - string serverName, + string instanceName, string databaseName, string backupName, string resourceGroupName) { if (string.IsNullOrWhiteSpace(resourceGroupName)) { - GetCurrentSqlClient().LongTermRetentionManagedInstanceBackups.Delete(locationName, serverName, databaseName, backupName); + GetCurrentSqlClient().LongTermRetentionManagedInstanceBackups.Delete(locationName, instanceName, databaseName, backupName); } else { - GetCurrentSqlClient().LongTermRetentionManagedInstanceBackups.DeleteByResourceGroup(resourceGroupName, locationName, serverName, databaseName, backupName); + GetCurrentSqlClient().LongTermRetentionManagedInstanceBackups.DeleteByResourceGroup(resourceGroupName, locationName, instanceName, databaseName, backupName); } } } diff --git a/src/Sql/Sql/ManagedDatabase/Cmdlet/RestoreAzureSqlManagedDatabase.cs b/src/Sql/Sql/ManagedDatabase/Cmdlet/RestoreAzureSqlManagedDatabase.cs index f9bcf660fd71..6a25e649955a 100644 --- a/src/Sql/Sql/ManagedDatabase/Cmdlet/RestoreAzureSqlManagedDatabase.cs +++ b/src/Sql/Sql/ManagedDatabase/Cmdlet/RestoreAzureSqlManagedDatabase.cs @@ -297,7 +297,7 @@ public class RestoreAzureRmSqlManagedDatabase Mandatory = true, Position = 0, ValueFromPipelineByPropertyName = true, - HelpMessage = "The resource id of the long term retention backup object to restore.")] + HelpMessage = "The resource id of the long term retention managed instance backup object to restore.")] [ValidateNotNullOrEmpty] public string ResourceId { get; set; } diff --git a/src/Sql/Sql/Properties/Resources.Designer.cs b/src/Sql/Sql/Properties/Resources.Designer.cs index ed19063181c3..a05f1fb79273 100644 --- a/src/Sql/Sql/Properties/Resources.Designer.cs +++ b/src/Sql/Sql/Properties/Resources.Designer.cs @@ -1409,5 +1409,27 @@ internal static string VulnerabilityAssessmentWrongParameterType { return ResourceManager.GetString("VulnerabilityAssessmentWrongParameterType", resourceCulture); } } + + /// + /// Looks up a localized string similar to Permanently removing the Long Term Retention backup '{0}' on database '{1}' on server '{2}' in location '{3}'.. + /// + internal static string RemoveAzureSqlInstanceDatabaseLongTermRetentionBackupDescription + { + get + { + return ResourceManager.GetString("RemoveAzureSqlInstanceDatabaseLongTermRetentionBackupDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to remove the Long Term Retention backup '{0}' on database '{1}' on server '{2}' in location '{3}'?. + /// + internal static string RemoveAzureSqlInstanceDatabaseLongTermRetentionBackupWarning + { + get + { + return ResourceManager.GetString("RemoveAzureSqlInstanceDatabaseLongTermRetentionBackupWarning", resourceCulture); + } + } } } diff --git a/src/Sql/Sql/Sql.csproj b/src/Sql/Sql/Sql.csproj index f05265f9440a..80f93c27e136 100644 --- a/src/Sql/Sql/Sql.csproj +++ b/src/Sql/Sql/Sql.csproj @@ -21,7 +21,7 @@ - + From b554adf1b69bf5656499384f413903d9a7f6d7a1 Mon Sep 17 00:00:00 2001 From: ziwa-msft Date: Mon, 2 Mar 2020 17:41:34 -0800 Subject: [PATCH 09/61] Add Minimal Tls Version Optional Parameter for SQLDB/MI --- .../Cmdlet/NewAzureSqlManagedInstance.cs | 12 +++++++++++- .../Cmdlet/SetAzureSqlManagedInstance.cs | 12 +++++++++++- .../Model/AzureSqlManagedInstanceModel.cs | 5 +++++ .../Services/AzureSqlManagedInstanceAdapter.cs | 4 +++- src/Sql/Sql/Server/Cmdlet/NewAzureSqlServer.cs | 10 ++++++++++ src/Sql/Sql/Server/Model/AzureSqlServerModel.cs | 5 +++++ .../Sql/Server/Services/AzureSqlServerAdapter.cs | 4 +++- src/Sql/Sql/help/New-AzSqlInstance.md | 16 +++++++++++++++- src/Sql/Sql/help/New-AzSqlServer.md | 16 +++++++++++++++- src/Sql/Sql/help/Set-AzSqlInstance.md | 16 +++++++++++++++- src/Sql/Sql/help/Set-AzSqlServer.md | 16 +++++++++++++++- 11 files changed, 108 insertions(+), 8 deletions(-) diff --git a/src/Sql/Sql/ManagedInstance/Cmdlet/NewAzureSqlManagedInstance.cs b/src/Sql/Sql/ManagedInstance/Cmdlet/NewAzureSqlManagedInstance.cs index 51f8091d11ab..341bc2677692 100644 --- a/src/Sql/Sql/ManagedInstance/Cmdlet/NewAzureSqlManagedInstance.cs +++ b/src/Sql/Sql/ManagedInstance/Cmdlet/NewAzureSqlManagedInstance.cs @@ -296,6 +296,15 @@ public class NewAzureSqlManagedInstance : ManagedInstanceCmdletBase [ResourceNameCompleter("Microsoft.Sql/instancePools")] public string InstancePoolName { get; set; } + /// + /// Gets or sets the managed instance minimal tls version + /// + [Parameter(Mandatory = false, + HelpMessage = "The Minimal Tls Version for the Sql Azure Managed Instance. Options are: None, 1.0, 1.1 and 1.2 ")] + [ValidateSet("None", "1.0", "1.1", "1.2")] + [PSArgumentCompleter("None", "1.0", "1.1", "1.2")] + public string MinimalTlsVersion { get; set; } + /// /// Gets or sets whether or not to run this cmdlet in the background as a job /// @@ -425,7 +434,8 @@ public override void ExecuteCmdlet() ProxyOverride = this.ProxyOverride, TimezoneId = this.TimezoneId, DnsZonePartner = this.DnsZonePartner, - InstancePoolName = this.InstancePoolName + InstancePoolName = this.InstancePoolName, + MinimalTlsVersion = this.MinimalTlsVersion }); return newEntity; } diff --git a/src/Sql/Sql/ManagedInstance/Cmdlet/SetAzureSqlManagedInstance.cs b/src/Sql/Sql/ManagedInstance/Cmdlet/SetAzureSqlManagedInstance.cs index 0deddf6c04ca..eb5b37278aba 100644 --- a/src/Sql/Sql/ManagedInstance/Cmdlet/SetAzureSqlManagedInstance.cs +++ b/src/Sql/Sql/ManagedInstance/Cmdlet/SetAzureSqlManagedInstance.cs @@ -173,6 +173,15 @@ public class SetAzureSqlManagedInstance : ManagedInstanceCmdletBase [ResourceNameCompleter("Microsoft.Sql/instancePools")] public string InstancePoolName { get; set; } + /// + /// Gets or sets the managed instance minimal tls version + /// + [Parameter(Mandatory = false, + HelpMessage = "The Minimal Tls Version for the Sql Azure Managed Instance. Options are: None, 1.0, 1.1 and 1.2 ")] + [ValidateSet("None", "1.0", "1.1", "1.2")] + [PSArgumentCompleter("None", "1.0", "1.1", "1.2")] + public string MinimalTlsVersion { get; set; } + /// /// Defines whether it is ok to skip the requesting of rule removal confirmation /// @@ -266,7 +275,8 @@ protected override IEnumerable ApplyUserInputToMod ProxyOverride = this.ProxyOverride, Tags = TagsConversionHelper.CreateTagDictionary(Tag, validate: true), Identity = model.FirstOrDefault().Identity ?? ResourceIdentityHelper.GetIdentityObjectFromType(this.AssignIdentity.IsPresent), - InstancePoolName = this.InstancePoolName + InstancePoolName = this.InstancePoolName, + MinimalTlsVersion = this.MinimalTlsVersion }); return updateData; } diff --git a/src/Sql/Sql/ManagedInstance/Model/AzureSqlManagedInstanceModel.cs b/src/Sql/Sql/ManagedInstance/Model/AzureSqlManagedInstanceModel.cs index 2010efd9a0b1..401410facfb6 100644 --- a/src/Sql/Sql/ManagedInstance/Model/AzureSqlManagedInstanceModel.cs +++ b/src/Sql/Sql/ManagedInstance/Model/AzureSqlManagedInstanceModel.cs @@ -129,5 +129,10 @@ public class AzureSqlManagedInstanceModel /// Gets or sets the instance pool name /// public string InstancePoolName { get; set; } + + /// + /// Gets or sets the managed instance minimal tls version + /// + public string MinimalTlsVersion { get; set; } } } diff --git a/src/Sql/Sql/ManagedInstance/Services/AzureSqlManagedInstanceAdapter.cs b/src/Sql/Sql/ManagedInstance/Services/AzureSqlManagedInstanceAdapter.cs index 79abe00ffca1..b6f4621fef32 100644 --- a/src/Sql/Sql/ManagedInstance/Services/AzureSqlManagedInstanceAdapter.cs +++ b/src/Sql/Sql/ManagedInstance/Services/AzureSqlManagedInstanceAdapter.cs @@ -126,7 +126,8 @@ public AzureSqlManagedInstanceModel UpsertManagedInstance(AzureSqlManagedInstanc DnsZonePartner = model.DnsZonePartner, InstancePoolId = model.InstancePoolName != null ? string.Format("/subscriptions/{0}/resourceGroups/{1}/providers/Microsoft.Sql/instancePools/{2}", - Context.Subscription.Id, model.ResourceGroupName, model.InstancePoolName): null + Context.Subscription.Id, model.ResourceGroupName, model.InstancePoolName): null, + MinimalTlsVersion = model.MinimalTlsVersion }); return CreateManagedInstanceModelFromResponse(resp); @@ -201,6 +202,7 @@ private static AzureSqlManagedInstanceModel CreateManagedInstanceModelFromRespon managedInstance.DnsZone = resp.DnsZone; managedInstance.InstancePoolName = resp.InstancePoolId != null ? new ResourceIdentifier(resp.InstancePoolId).ResourceName : null; + managedInstance.MinimalTlsVersion = resp.MinimalTlsVersion; Management.Internal.Resources.Models.Sku sku = new Management.Internal.Resources.Models.Sku(); sku.Name = resp.Sku.Name; diff --git a/src/Sql/Sql/Server/Cmdlet/NewAzureSqlServer.cs b/src/Sql/Sql/Server/Cmdlet/NewAzureSqlServer.cs index 9ac7986e5a36..1b62cf96bcbc 100644 --- a/src/Sql/Sql/Server/Cmdlet/NewAzureSqlServer.cs +++ b/src/Sql/Sql/Server/Cmdlet/NewAzureSqlServer.cs @@ -75,6 +75,15 @@ public class NewAzureSqlServer : AzureSqlServerCmdletBase HelpMessage = "Generate and assign an Azure Active Directory Identity for this server for use with key management services like Azure KeyVault.")] public SwitchParameter AssignIdentity { get; set; } + /// + /// Gets or sets the managed instance minimal tls version + /// + [Parameter(Mandatory = false, + HelpMessage = "The Minimal Tls Version for the Sql Azure Managed Instance. Options are: 1.0, 1.1 and 1.2 ")] + [ValidateSet("1.0", "1.1", "1.2")] + [PSArgumentCompleter("1.0", "1.1", "1.2")] + public string MinimalTlsVersion { get; set; } + /// /// Gets or sets whether or not to run this cmdlet in the background as a job /// @@ -135,6 +144,7 @@ public override void ExecuteCmdlet() SqlAdministratorLogin = this.SqlAdministratorCredentials.UserName, Tags = TagsConversionHelper.CreateTagDictionary(Tags, validate: true), Identity = ResourceIdentityHelper.GetIdentityObjectFromType(this.AssignIdentity.IsPresent), + MinimalTlsVersion = this.MinimalTlsVersion, }); return newEntity; } diff --git a/src/Sql/Sql/Server/Model/AzureSqlServerModel.cs b/src/Sql/Sql/Server/Model/AzureSqlServerModel.cs index 7d18d5c2fcca..73cacafaea3b 100644 --- a/src/Sql/Sql/Server/Model/AzureSqlServerModel.cs +++ b/src/Sql/Sql/Server/Model/AzureSqlServerModel.cs @@ -71,5 +71,10 @@ public class AzureSqlServerModel /// Gets or sets the resource id of the server /// public string ResourceId { get; set; } + + /// + /// Gets or sets the managed instance minimal tls version + /// + public string MinimalTlsVersion { get; set; } } } diff --git a/src/Sql/Sql/Server/Services/AzureSqlServerAdapter.cs b/src/Sql/Sql/Server/Services/AzureSqlServerAdapter.cs index 879252583ab8..ad10eede8d77 100644 --- a/src/Sql/Sql/Server/Services/AzureSqlServerAdapter.cs +++ b/src/Sql/Sql/Server/Services/AzureSqlServerAdapter.cs @@ -106,7 +106,8 @@ public AzureSqlServerModel UpsertServer(AzureSqlServerModel model) AdministratorLogin = model.SqlAdministratorLogin, AdministratorLoginPassword = model.SqlAdministratorPassword != null ? Decrypt(model.SqlAdministratorPassword) : null, Version = model.ServerVersion, - Identity = model.Identity + Identity = model.Identity, + MinimalTlsVersion = model.MinimalTlsVersion }); return CreateServerModelFromResponse(resp); @@ -146,6 +147,7 @@ private static AzureSqlServerModel CreateServerModelFromResponse(Management.Sql. server.Identity = resp.Identity; server.FullyQualifiedDomainName = resp.FullyQualifiedDomainName; server.ResourceId = resp.Id; + server.MinimalTlsVersion = resp.MinimalTlsVersion; return server; } diff --git a/src/Sql/Sql/help/New-AzSqlInstance.md b/src/Sql/Sql/help/New-AzSqlInstance.md index 793712ebf461..0730cd786333 100644 --- a/src/Sql/Sql/help/New-AzSqlInstance.md +++ b/src/Sql/Sql/help/New-AzSqlInstance.md @@ -18,7 +18,7 @@ New-AzSqlInstance [-Name] [-ResourceGroupName] -AdministratorC -Location -SubnetId [-LicenseType ] [-StorageSizeInGB ] -VCore -Edition -ComputeGeneration [-Collation ] [-PublicDataEndpointEnabled] [-ProxyOverride ] [-TimezoneId ] [-Tag ] [-AssignIdentity] - [-DnsZonePartner ] [-InstancePoolName ] [-AsJob] [-DefaultProfile ] + [-DnsZonePartner ] [-InstancePoolName ] [-AsJob] [-MinimalTlsVersion ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -308,6 +308,20 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` +### -MinimalTlsVersion +The minimal TLS version to enforce for Managed instance + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False + ### -InstancePoolName The instance pool to place this instance in. diff --git a/src/Sql/Sql/help/New-AzSqlServer.md b/src/Sql/Sql/help/New-AzSqlServer.md index 7b09c44c9bf0..b5290bdb3fc7 100644 --- a/src/Sql/Sql/help/New-AzSqlServer.md +++ b/src/Sql/Sql/help/New-AzSqlServer.md @@ -16,7 +16,7 @@ Creates a SQL Database server. ``` New-AzSqlServer -ServerName -SqlAdministratorCredentials -Location [-Tags ] [-ServerVersion ] [-AssignIdentity] [-AsJob] [-ResourceGroupName] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-DefaultProfile ] [-MinimalTlsVersion ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -163,6 +163,20 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -MinimalTlsVersion +The minimal TLS version to enforce for Sql Server + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False + ### -Tags Key-value pairs in the form of a hash table. For example: @{key0="value0";key1=$null;key2="value2"} diff --git a/src/Sql/Sql/help/Set-AzSqlInstance.md b/src/Sql/Sql/help/Set-AzSqlInstance.md index 71f09bc44348..30e4ac7dd7c0 100644 --- a/src/Sql/Sql/help/Set-AzSqlInstance.md +++ b/src/Sql/Sql/help/Set-AzSqlInstance.md @@ -17,7 +17,7 @@ Sets properties for an Azure SQL Database Managed Instance. Set-AzSqlInstance [-Name] [-ResourceGroupName] [-AdministratorPassword ] [-Edition ] [-ComputeGeneration ] [-LicenseType ] [-StorageSizeInGB ] [-VCore ] [-PublicDataEndpointEnabled ] [-ProxyOverride ] [-Tag ] - [-AssignIdentity] [-InstancePoolName ] [-Force] + [-AssignIdentity] [-InstancePoolName ] [-MinimalTlsVersion ] [-Force] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -295,6 +295,20 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -MinimalTlsVersion +The minimal TLS version to enforce for Managed instance + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False + ### -ResourceGroupName The name of the resource group. diff --git a/src/Sql/Sql/help/Set-AzSqlServer.md b/src/Sql/Sql/help/Set-AzSqlServer.md index 704d5418b609..0f7c871bd483 100644 --- a/src/Sql/Sql/help/Set-AzSqlServer.md +++ b/src/Sql/Sql/help/Set-AzSqlServer.md @@ -16,7 +16,7 @@ Modifies properties of a SQL Database server. ``` Set-AzSqlServer [-ServerName] [-SqlAdministratorPassword ] [-Tags ] [-ServerVersion ] [-AssignIdentity] [-Force] [-ResourceGroupName] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-DefaultProfile ] [-MinimalTlsVersion ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -152,6 +152,20 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -MinimalTlsVersion +The minimal TLS version to enforce for Sql Server + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False + ### -Tags Specifies a dictionary of tags that this cmdlet associates with the server. Key-value pairs in the form of a hash table set as tags on the server. For example: From bca9bb651385978e5f8428d6c8ea799597de5982 Mon Sep 17 00:00:00 2001 From: "dixue@microsoft.com" Date: Tue, 3 Mar 2020 17:32:04 +0800 Subject: [PATCH 10/61] 3.6.0 RC1 --- ChangeLog.md | 66 + src/Accounts/Accounts/Az.Accounts.psd1 | 8 +- src/Accounts/Accounts/ChangeLog.md | 2 + .../Accounts/Properties/AssemblyInfo.cs | 4 +- src/Advisor/Advisor/Az.Advisor.psd1 | 2 +- src/Aks/Aks/Az.Aks.psd1 | 2 +- .../AlertsManagement/Az.AlertsManagement.psd1 | 2 +- .../AnalysisServices/Az.AnalysisServices.psd1 | 2 +- .../ApiManagement/Az.ApiManagement.psd1 | 16 +- src/ApiManagement/ApiManagement/ChangeLog.md | 2 + .../ApiManagement/Properties/AssemblyInfo.cs | 4 +- .../Az.ApplicationInsights.psd1 | 2 +- .../Attestation/Az.Attestation.psd1 | 14 +- src/Attestation/Attestation/ChangeLog.md | 2 + .../Attestation/Properties/AssemblyInfo.cs | 4 +- src/Automation/Automation/Az.Automation.psd1 | 2 +- src/Batch/Batch/Az.Batch.psd1 | 2 +- src/Billing/Billing/Az.Billing.psd1 | 2 +- src/Blueprint/Blueprint/Az.Blueprint.psd1 | 9 +- src/Blueprint/Blueprint/ChangeLog.md | 2 + .../Blueprint/Properties/AssemblyInfo.cs | 4 +- src/Cdn/Cdn/Az.Cdn.psd1 | 2 +- .../Az.CognitiveServices.psd1 | 2 +- src/Compute/Compute/Az.Compute.psd1 | 2 +- .../Az.ContainerInstance.psd1 | 2 +- .../Az.ContainerRegistry.psd1 | 2 +- src/CosmosDB/CosmosDB/Az.CosmosDB.psd1 | 2 +- src/DataBox/DataBox/Az.DataBox.psd1 | 2 +- .../DataBoxEdge/Az.DataBoxEdge.psd1 | 2 +- .../DataFactoryV2/Az.DataFactory.psd1 | 2 +- .../Az.DataLakeAnalytics.psd1 | 2 +- .../DataLakeStore/Az.DataLakeStore.psd1 | 11 +- src/DataLakeStore/DataLakeStore/ChangeLog.md | 2 + .../DataLakeStore/Properties/AssemblyInfo.cs | 4 +- .../DataMigration/Az.DataMigration.psd1 | 2 +- src/DataShare/DataShare/Az.DataShare.psd1 | 2 +- .../Az.DeploymentManager.psd1 | 2 +- src/DevSpaces/DevSpaces/Az.DevSpaces.psd1 | 2 +- .../DevTestLabs/Az.DevTestLabs.psd1 | 2 +- .../Az.DeviceProvisioningServices.psd1 | 2 +- src/Dns/Dns/Az.Dns.psd1 | 2 +- src/EventGrid/EventGrid/Az.EventGrid.psd1 | 2 +- src/EventHub/EventHub/Az.EventHub.psd1 | 2 +- src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 | 2 +- .../Az.GuestConfiguration.psd1 | 2 +- src/HDInsight/HDInsight/Az.HDInsight.psd1 | 2 +- .../HealthcareApis/Az.HealthcareApis.psd1 | 2 +- src/IotCentral/IotCentral/Az.IotCentral.psd1 | 2 +- src/IotHub/IotHub/Az.IotHub.psd1 | 35 +- src/IotHub/IotHub/ChangeLog.md | 2 + src/IotHub/IotHub/Properties/AssemblyInfo.cs | 6 +- src/KeyVault/KeyVault/Az.KeyVault.psd1 | 2 +- src/Kusto/Kusto/Az.Kusto.psd1 | 2 +- src/LogicApp/LogicApp/Az.LogicApp.psd1 | 2 +- .../MachineLearning/Az.MachineLearning.psd1 | 2 +- .../Maintenance/Az.Maintenance.psd1 | 9 +- src/Maintenance/Maintenance/ChangeLog.md | 2 + .../Maintenance/Properties/AssemblyInfo.cs | 4 +- .../Az.ManagedServiceIdentity.psd1 | 2 +- .../ManagedServices/Az.ManagedServices.psd1 | 2 +- .../Az.ManagementPartner.psd1 | 2 +- src/Maps/Maps/Az.Maps.psd1 | 2 +- .../Az.MarketplaceOrdering.psd1 | 2 +- src/Media/Media/Az.Media.psd1 | 2 +- .../MixedReality/Az.MixedReality.psd1 | 2 +- src/Monitor/Monitor/Az.Monitor.psd1 | 2 +- .../NetAppFiles/Az.NetAppFiles.psd1 | 2 +- src/Network/Network/Az.Network.psd1 | 2 +- .../NotificationHubs/Az.NotificationHubs.psd1 | 2 +- .../Az.OperationalInsights.psd1 | 2 +- src/Peering/Peering/Az.Peering.psd1 | 2 +- .../PolicyInsights/Az.PolicyInsights.psd1 | 2 +- .../PowerBIEmbedded/Az.PowerBIEmbedded.psd1 | 2 +- src/PrivateDns/PrivateDns/Az.PrivateDns.psd1 | 2 +- .../RecoveryServices/Az.RecoveryServices.psd1 | 2 +- src/RedisCache/RedisCache/Az.RedisCache.psd1 | 2 +- src/Relay/Relay/Az.Relay.psd1 | 2 +- .../Reservations/Az.Reservations.psd1 | 2 +- .../ResourceGraph/Az.ResourceGraph.psd1 | 2 +- src/Resources/Resources/Az.Resources.psd1 | 28 +- src/Resources/Resources/ChangeLog.md | 2 + .../Resources/Properties/AssemblyInfo.cs | 4 +- src/Search/Search/Az.Search.psd1 | 2 +- src/Security/Security/Az.Security.psd1 | 2 +- src/ServiceBus/ServiceBus/Az.ServiceBus.psd1 | 2 +- .../ServiceFabric/Az.ServiceFabric.psd1 | 2 +- src/SignalR/SignalR/Az.SignalR.psd1 | 2 +- src/Sql/Sql/Az.Sql.psd1 | 10 +- src/Sql/Sql/ChangeLog.md | 2 + src/Sql/Sql/Properties/AssemblyInfo.cs | 4 +- .../Storage.Management/Az.Storage.psd1 | 15 +- src/Storage/Storage.Management/ChangeLog.md | 2 + .../Properties/AssemblyInfo.cs | 4 +- .../StorageSync/Az.StorageSync.psd1 | 2 +- .../StreamAnalytics/Az.StreamAnalytics.psd1 | 2 +- .../Subscription/Az.Subscription.psd1 | 2 +- .../TrafficManager/Az.TrafficManager.psd1 | 2 +- src/Websites/Websites/Az.Websites.psd1 | 13 +- src/Websites/Websites/ChangeLog.md | 2 + .../Websites/Properties/AssemblyInfo.cs | 4 +- tools/Az/Az.psd1 | 119 +- ...Azure.PowerShell.Cmdlets.Accounts.dll.json | 136 +- ...s.ApiManagement.ServiceManagement.dll.json | 137 + ....PowerShell.Cmdlets.ApiManagement.dll.json | 396 +- ....PowerShell.Cmdlets.DataLakeStore.dll.json | 226 +- ...t.Azure.PowerShell.Cmdlets.IotHub.dll.json | 13279 ++++++++++++++-- ...owerShell.Cmdlets.ResourceManager.dll.json | 15 +- ...zure.PowerShell.Cmdlets.Resources.dll.json | 232 +- ...soft.Azure.PowerShell.Cmdlets.Sql.dll.json | 1380 +- ...rShell.Cmdlets.Storage.Management.dll.json | 806 +- ...oft.Azure.PowerShell.Cmdlets.Tags.dll.json | 1226 +- ...Azure.PowerShell.Cmdlets.Websites.dll.json | 390 +- 112 files changed, 15415 insertions(+), 3361 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 96c483c2831c..be804c867fe1 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,3 +1,69 @@ +## 3.6.0 - March 2020 +#### Az.Accounts +* Open Azure PowerShell survey page in 'Send-Feedback' [#11020] +* Display Azure PowerShell survey URL in 'Resolve-Error' [#11021] +* Added Az version in UserAgent + +#### Az.ApiManagement +* Added support for retrieving and configuring Custom Domain on the DeveloperPortal Endpoint [#11007] +* 'Export-AzApiManagementApi' Added support for downloading Api Definition in Json format [#9987] +* 'Import-AzApiManagementApi' Added support for importing OpenApi 3.0 definition from Json document +* 'New-AzApiManagementIdentityProvider' and 'Set-AzApiManagementIdentityProvider' Added support for configuring 'Signin Tenant' for AAD B2C Provider [#9784] + +#### Az.DataLakeStore +* Added reference to System.Buffers explicitly in csproj and psd1. + +#### Az.IotHub +* Added support to manage devices in an Iot Hub. New Cmdlets are: + - 'Add-AzIotHubDevice' + - 'Get-AzIotHubDevice' + - 'Remove-AzIotHubDevice' + - 'Set-AzIotHubDevice' +* Added support to manage modules on a target Iot device in an Iot Hub. New Cmdlets are: + - 'Add-AzIotHubModule' + - 'Get-AzIotHubModule' + - 'Remove-AzIotHubModule' + - 'Set-AzIotHubModule' +* Added cmdlet to get the connection string of a target IoT device in an Iot Hub. +* Added cmdlet to get the connection string of a module on a target IoT device in an Iot Hub. +* Added support to get/set parent device of an IoT device. New Cmdlets are: + - 'Get-AzIotHubDeviceParent' + - 'Set-AzIotHubDeviceParent' +* Added support to manage device parent-child relationship. + +#### Az.Resources +* Fixed for null reference bug in 'Get-AzRoleAssignment' +* Marked switch '-Force' and '-PassThru' optional in 'Remove-AzADGroup' [#10849] +* Fixed issue that 'MailNickname' doesn't return in 'Remove-AzADGroup' [#11167] +* Fixed issue that 'Remove-AzADGroup' pipe operation doesn't work [#11171] +* Fixed for null reference bug in GetAzureRoleAssignmentCommand +* Added breaking change attributes for upcoming changes to policy cmdlets +* Updated 'Get-AzResourceGroup' to perform resource group tag filtering on server-side +* Extended Tag cmdlets to accept -ResourceId + - Get-AzTag -ResourceId + - New-AzTag -ResourceId + - Remove-AzTag -ResourceId +* Added new Tag cmdlet + - Update-AzTag -ResourceId +* Brought ScopedDeployment from SDK 3.3.0 + +#### Az.Sql +* Added PublicNetworkAccess to New-AzSqlServer and Set-AzSqlServer + +#### Az.Storage +* Supported AllowProtectedAppendWrite in ImmutabilityPolicy + - 'Set-AzRmStorageContainerImmutabilityPolicy' +* Added breaking change warning message for AzureStorageTable type change in a future release + - 'New-AzStorageTable' + - 'Get-AzStorageTable' + +#### Az.Websites +* Added Tag parameter for 'New-AzAppServicePlan' and 'Set-AzAppServicePlan' +* Stop cmdlt execution if an exception is thrown when adding a custom domain to a website +* Added support to perform operations for App Services not in the same resource group as the App Service Plan +* Applied access restriction to WebApp/Function in different resource groups +* Fixed issue to set custom hostnames for WebAppSlots + ## 3.5.0 - February 2020 ### Highlights since the last major release * Updated client side telemetry. diff --git a/src/Accounts/Accounts/Az.Accounts.psd1 b/src/Accounts/Accounts/Az.Accounts.psd1 index 2fa1ea1fb6a5..444be5e14d31 100644 --- a/src/Accounts/Accounts/Az.Accounts.psd1 +++ b/src/Accounts/Accounts/Az.Accounts.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 2/11/2020 +# Generated on: 3/3/2020 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '1.7.2' +ModuleVersion = '1.7.3' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -142,7 +142,9 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Added SubscriptionId, TenantId, and execution time into data of client side telemetry' + ReleaseNotes = '* Open Azure PowerShell survey page in ''Send-Feedback'' [#11020] +* Display Azure PowerShell survey URL in ''Resolve-Error'' [#11021] +* Added Az version in UserAgent' # Prerelease string of this module # Prerelease = '' diff --git a/src/Accounts/Accounts/ChangeLog.md b/src/Accounts/Accounts/ChangeLog.md index 9ae420974661..b7b97918bfd1 100644 --- a/src/Accounts/Accounts/ChangeLog.md +++ b/src/Accounts/Accounts/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 1.7.3 * Open Azure PowerShell survey page in `Send-Feedback` [#11020] * Display Azure PowerShell survey URL in `Resolve-Error` [#11021] * Added Az version in UserAgent diff --git a/src/Accounts/Accounts/Properties/AssemblyInfo.cs b/src/Accounts/Accounts/Properties/AssemblyInfo.cs index 080a8381e883..44871b9cea6f 100644 --- a/src/Accounts/Accounts/Properties/AssemblyInfo.cs +++ b/src/Accounts/Accounts/Properties/AssemblyInfo.cs @@ -43,8 +43,8 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("1.7.2")] -[assembly: AssemblyFileVersion("1.7.2")] +[assembly: AssemblyVersion("1.7.3")] +[assembly: AssemblyFileVersion("1.7.3")] #if !SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Accounts.Test")] #endif diff --git a/src/Advisor/Advisor/Az.Advisor.psd1 b/src/Advisor/Advisor/Az.Advisor.psd1 index bed4bba2b4bd..be6b299b2018 100644 --- a/src/Advisor/Advisor/Az.Advisor.psd1 +++ b/src/Advisor/Advisor/Az.Advisor.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Advisor.dll' diff --git a/src/Aks/Aks/Az.Aks.psd1 b/src/Aks/Aks/Az.Aks.psd1 index 1ccd685f6ccf..cf6af30602a3 100644 --- a/src/Aks/Aks/Az.Aks.psd1 +++ b/src/Aks/Aks/Az.Aks.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'YamlDotNet.dll', 'AutoMapper.dll' diff --git a/src/AlertsManagement/AlertsManagement/Az.AlertsManagement.psd1 b/src/AlertsManagement/AlertsManagement/Az.AlertsManagement.psd1 index 22968d5c2c79..c6310fde51db 100644 --- a/src/AlertsManagement/AlertsManagement/Az.AlertsManagement.psd1 +++ b/src/AlertsManagement/AlertsManagement/Az.AlertsManagement.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.AlertsManagement.dll' diff --git a/src/AnalysisServices/AnalysisServices/Az.AnalysisServices.psd1 b/src/AnalysisServices/AnalysisServices/Az.AnalysisServices.psd1 index fd9a8c73a533..38ba89be8ae3 100644 --- a/src/AnalysisServices/AnalysisServices/Az.AnalysisServices.psd1 +++ b/src/AnalysisServices/AnalysisServices/Az.AnalysisServices.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Analysis.dll' diff --git a/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1 b/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1 index 1a0001907f28..74cdf772c39c 100644 --- a/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1 +++ b/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 1/21/2020 +# Generated on: 3/3/2020 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '1.3.4' +ModuleVersion = '1.4.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'AutoMapper.dll', 'Microsoft.Azure.Management.ApiManagement.dll', @@ -188,12 +188,10 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* **Get-AzApiManagementApiSchema** Fixed getting Open-Api Schema associated with an API - https://github.com/Azure/azure-powershell/issues/10626 -* **New-AzApiManagementProduct*** and **Set-AzApiManagementProduct** - - Fix documentation for https://github.com/Azure/azure-powershell/issues/10472 -* **Set-AzApiManagementApi** - Added example to show how to update the ServiceUrl using the cmdlet' + ReleaseNotes = '* Added support for retrieving and configuring Custom Domain on the DeveloperPortal Endpoint [#11007] +* ''Export-AzApiManagementApi'' Added support for downloading Api Definition in Json format [#9987] +* ''Import-AzApiManagementApi'' Added support for importing OpenApi 3.0 definition from Json document +* ''New-AzApiManagementIdentityProvider'' and ''Set-AzApiManagementIdentityProvider'' Added support for configuring ''Signin Tenant'' for AAD B2C Provider [#9784]' # Prerelease string of this module # Prerelease = '' diff --git a/src/ApiManagement/ApiManagement/ChangeLog.md b/src/ApiManagement/ApiManagement/ChangeLog.md index 217eb8d3099e..3655e002ca45 100644 --- a/src/ApiManagement/ApiManagement/ChangeLog.md +++ b/src/ApiManagement/ApiManagement/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 1.4.0 * Added support for retrieving and configuring Custom Domain on the DeveloperPortal Endpoint [#11007] * `Export-AzApiManagementApi` Added support for downloading Api Definition in Json format [#9987] * `Import-AzApiManagementApi` Added support for importing OpenApi 3.0 definition from Json document diff --git a/src/ApiManagement/ApiManagement/Properties/AssemblyInfo.cs b/src/ApiManagement/ApiManagement/Properties/AssemblyInfo.cs index ac5c2bb4f607..d46cac72009c 100644 --- a/src/ApiManagement/ApiManagement/Properties/AssemblyInfo.cs +++ b/src/ApiManagement/ApiManagement/Properties/AssemblyInfo.cs @@ -41,5 +41,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("1.3.4")] -[assembly: AssemblyFileVersion("1.3.4")] +[assembly: AssemblyVersion("1.4.0")] +[assembly: AssemblyFileVersion("1.4.0")] diff --git a/src/ApplicationInsights/ApplicationInsights/Az.ApplicationInsights.psd1 b/src/ApplicationInsights/ApplicationInsights/Az.ApplicationInsights.psd1 index c428da6050c9..7e94f7bc402c 100644 --- a/src/ApplicationInsights/ApplicationInsights/Az.ApplicationInsights.psd1 +++ b/src/ApplicationInsights/ApplicationInsights/Az.ApplicationInsights.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.ApplicationInsights.dll' diff --git a/src/Attestation/Attestation/Az.Attestation.psd1 b/src/Attestation/Attestation/Az.Attestation.psd1 index a59057b01110..26e9e370b3f8 100644 --- a/src/Attestation/Attestation/Az.Attestation.psd1 +++ b/src/Attestation/Attestation/Az.Attestation.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 2/11/2020 +# Generated on: 3/3/2020 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '0.1.4' +ModuleVersion = '0.1.5' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Attestation.dll', @@ -77,9 +77,8 @@ FunctionsToExport = @() # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. CmdletsToExport = 'New-AzAttestation', 'Get-AzAttestation', 'Remove-AzAttestation', 'Get-AzAttestationPolicy', 'Set-AzAttestationPolicy', - 'Reset-AzAttestationPolicy', - 'Get-AzAttestationPolicySigners', 'Add-AzAttestationPolicySigner', - 'Remove-AzAttestationPolicySigner' + 'Reset-AzAttestationPolicy', 'Get-AzAttestationPolicySigners', + 'Add-AzAttestationPolicySigner', 'Remove-AzAttestationPolicySigner' # Variables to export from this module # VariablesToExport = @() @@ -114,7 +113,8 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Added policy management cmdlets to ''Az.Attestation'' module' + ReleaseNotes = '* Added policy signer management cmdlets to ''Az.Attestation'' module +* Added ''Location'' and ''Tag'' to ''New-AzAttestation''' # Prerelease string of this module # Prerelease = '' diff --git a/src/Attestation/Attestation/ChangeLog.md b/src/Attestation/Attestation/ChangeLog.md index ffe5a17381c7..5a6143a9772f 100644 --- a/src/Attestation/Attestation/ChangeLog.md +++ b/src/Attestation/Attestation/ChangeLog.md @@ -20,6 +20,8 @@ ## Upcoming Release + +## Version 0.1.5 * Added policy signer management cmdlets to `Az.Attestation` module * Added `Location` and `Tag` to `New-AzAttestation` diff --git a/src/Attestation/Attestation/Properties/AssemblyInfo.cs b/src/Attestation/Attestation/Properties/AssemblyInfo.cs index 05c83b79e724..5055b63a3dd4 100644 --- a/src/Attestation/Attestation/Properties/AssemblyInfo.cs +++ b/src/Attestation/Attestation/Properties/AssemblyInfo.cs @@ -29,8 +29,8 @@ [assembly: CLSCompliant(false)] [assembly: Guid("2994548F-69B9-4DC2-8D19-52CC0C0C85BC")] -[assembly: AssemblyVersion("0.1.4")] -[assembly: AssemblyFileVersion("0.1.4")] +[assembly: AssemblyVersion("0.1.5")] +[assembly: AssemblyFileVersion("0.1.5")] #if !SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Attestation.Test")] #endif diff --git a/src/Automation/Automation/Az.Automation.psd1 b/src/Automation/Automation/Az.Automation.psd1 index 8181842b7799..2ab191ba955e 100644 --- a/src/Automation/Automation/Az.Automation.psd1 +++ b/src/Automation/Automation/Az.Automation.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Automation.dll' diff --git a/src/Batch/Batch/Az.Batch.psd1 b/src/Batch/Batch/Az.Batch.psd1 index b6432988279f..e51145bf103e 100644 --- a/src/Batch/Batch/Az.Batch.psd1 +++ b/src/Batch/Batch/Az.Batch.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Batch.dll', 'Microsoft.Azure.Management.Batch.dll', diff --git a/src/Billing/Billing/Az.Billing.psd1 b/src/Billing/Billing/Az.Billing.psd1 index a5d621abea60..799f7a8d4d25 100644 --- a/src/Billing/Billing/Az.Billing.psd1 +++ b/src/Billing/Billing/Az.Billing.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Billing.dll', diff --git a/src/Blueprint/Blueprint/Az.Blueprint.psd1 b/src/Blueprint/Blueprint/Az.Blueprint.psd1 index 36723f7cf8cc..144076148861 100644 --- a/src/Blueprint/Blueprint/Az.Blueprint.psd1 +++ b/src/Blueprint/Blueprint/Az.Blueprint.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 1/29/2020 +# Generated on: 3/3/2020 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '0.2.10' +ModuleVersion = '0.2.11' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Blueprint.dll' @@ -114,7 +114,8 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Added support to include subfolders when deploying blueprints with artifacts' + ReleaseNotes = '* Showed DependsOn property value in the table view +* Added support to accept PolicyDefinitionParameter empty ' # Prerelease string of this module # Prerelease = '' diff --git a/src/Blueprint/Blueprint/ChangeLog.md b/src/Blueprint/Blueprint/ChangeLog.md index 16998e6460e9..474a05d591d1 100644 --- a/src/Blueprint/Blueprint/ChangeLog.md +++ b/src/Blueprint/Blueprint/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 0.2.11 * Showed DependsOn property value in the table view * Added support to accept PolicyDefinitionParameter empty diff --git a/src/Blueprint/Blueprint/Properties/AssemblyInfo.cs b/src/Blueprint/Blueprint/Properties/AssemblyInfo.cs index f50bc4435010..8e388dd07408 100644 --- a/src/Blueprint/Blueprint/Properties/AssemblyInfo.cs +++ b/src/Blueprint/Blueprint/Properties/AssemblyInfo.cs @@ -43,8 +43,8 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("0.2.10")] -[assembly: AssemblyFileVersion("0.2.10")] +[assembly: AssemblyVersion("0.2.11")] +[assembly: AssemblyFileVersion("0.2.11")] #if SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.Commands.ResourceManager.Blueprint.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")] #else diff --git a/src/Cdn/Cdn/Az.Cdn.psd1 b/src/Cdn/Cdn/Az.Cdn.psd1 index f86eec075470..462206f83b34 100644 --- a/src/Cdn/Cdn/Az.Cdn.psd1 +++ b/src/Cdn/Cdn/Az.Cdn.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Cdn.dll' diff --git a/src/CognitiveServices/CognitiveServices/Az.CognitiveServices.psd1 b/src/CognitiveServices/CognitiveServices/Az.CognitiveServices.psd1 index 0f7f959f65d1..8e7be6a67a67 100644 --- a/src/CognitiveServices/CognitiveServices/Az.CognitiveServices.psd1 +++ b/src/CognitiveServices/CognitiveServices/Az.CognitiveServices.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.CognitiveServices.dll' diff --git a/src/Compute/Compute/Az.Compute.psd1 b/src/Compute/Compute/Az.Compute.psd1 index ea9bb5543333..582fc656330b 100644 --- a/src/Compute/Compute/Az.Compute.psd1 +++ b/src/Compute/Compute/Az.Compute.psd1 @@ -54,7 +54,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'AutoMapper.dll', 'Microsoft.Azure.Management.Compute.dll', diff --git a/src/ContainerInstance/ContainerInstance/Az.ContainerInstance.psd1 b/src/ContainerInstance/ContainerInstance/Az.ContainerInstance.psd1 index 9a8ae2061d47..6b16cb0c94c7 100644 --- a/src/ContainerInstance/ContainerInstance/Az.ContainerInstance.psd1 +++ b/src/ContainerInstance/ContainerInstance/Az.ContainerInstance.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'AutoMapper.dll', diff --git a/src/ContainerRegistry/ContainerRegistry/Az.ContainerRegistry.psd1 b/src/ContainerRegistry/ContainerRegistry/Az.ContainerRegistry.psd1 index b5d378f63cd3..eedf3ab669bf 100644 --- a/src/ContainerRegistry/ContainerRegistry/Az.ContainerRegistry.psd1 +++ b/src/ContainerRegistry/ContainerRegistry/Az.ContainerRegistry.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.ContainerRegistry.dll' diff --git a/src/CosmosDB/CosmosDB/Az.CosmosDB.psd1 b/src/CosmosDB/CosmosDB/Az.CosmosDB.psd1 index 4061e8608f2c..487d7207904f 100644 --- a/src/CosmosDB/CosmosDB/Az.CosmosDB.psd1 +++ b/src/CosmosDB/CosmosDB/Az.CosmosDB.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.CosmosDB.dll' diff --git a/src/DataBox/DataBox/Az.DataBox.psd1 b/src/DataBox/DataBox/Az.DataBox.psd1 index 540d46e2066b..194e3f2c8ceb 100644 --- a/src/DataBox/DataBox/Az.DataBox.psd1 +++ b/src/DataBox/DataBox/Az.DataBox.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.DataBox.dll' diff --git a/src/DataBoxEdge/DataBoxEdge/Az.DataBoxEdge.psd1 b/src/DataBoxEdge/DataBoxEdge/Az.DataBoxEdge.psd1 index 1292fb25e98f..c29e2514a2cb 100644 --- a/src/DataBoxEdge/DataBoxEdge/Az.DataBoxEdge.psd1 +++ b/src/DataBoxEdge/DataBoxEdge/Az.DataBoxEdge.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.DataBoxEdge.dll' diff --git a/src/DataFactory/DataFactoryV2/Az.DataFactory.psd1 b/src/DataFactory/DataFactoryV2/Az.DataFactory.psd1 index 308b1c4811fe..a51e30eb31f0 100644 --- a/src/DataFactory/DataFactoryV2/Az.DataFactory.psd1 +++ b/src/DataFactory/DataFactoryV2/Az.DataFactory.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.DataFactory.dll', diff --git a/src/DataLakeAnalytics/DataLakeAnalytics/Az.DataLakeAnalytics.psd1 b/src/DataLakeAnalytics/DataLakeAnalytics/Az.DataLakeAnalytics.psd1 index 28550cfee179..775dce894ff2 100644 --- a/src/DataLakeAnalytics/DataLakeAnalytics/Az.DataLakeAnalytics.psd1 +++ b/src/DataLakeAnalytics/DataLakeAnalytics/Az.DataLakeAnalytics.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.DataLake.Analytics.dll' diff --git a/src/DataLakeStore/DataLakeStore/Az.DataLakeStore.psd1 b/src/DataLakeStore/DataLakeStore/Az.DataLakeStore.psd1 index c06cc1e0f951..1bbb7068e822 100644 --- a/src/DataLakeStore/DataLakeStore/Az.DataLakeStore.psd1 +++ b/src/DataLakeStore/DataLakeStore/Az.DataLakeStore.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 12/11/2019 +# Generated on: 3/3/2020 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '1.2.6' +ModuleVersion = '1.2.7' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -53,11 +53,12 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.DataLake.Store.dll', - 'Microsoft.Azure.DataLake.Store.dll', 'NLog.dll', 'System.Buffers.dll' + 'Microsoft.Azure.DataLake.Store.dll', 'NLog.dll', + 'System.Buffers.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -159,7 +160,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Update references in .psd1 to use relative path' + ReleaseNotes = '* Added reference to System.Buffers explicitly in csproj and psd1.' # Prerelease string of this module # Prerelease = '' diff --git a/src/DataLakeStore/DataLakeStore/ChangeLog.md b/src/DataLakeStore/DataLakeStore/ChangeLog.md index 8390eb4ecabb..36f7827b628d 100644 --- a/src/DataLakeStore/DataLakeStore/ChangeLog.md +++ b/src/DataLakeStore/DataLakeStore/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 1.2.7 * Added reference to System.Buffers explicitly in csproj and psd1. ## Version 1.2.6 diff --git a/src/DataLakeStore/DataLakeStore/Properties/AssemblyInfo.cs b/src/DataLakeStore/DataLakeStore/Properties/AssemblyInfo.cs index 205281625bed..27f6955dc6a2 100644 --- a/src/DataLakeStore/DataLakeStore/Properties/AssemblyInfo.cs +++ b/src/DataLakeStore/DataLakeStore/Properties/AssemblyInfo.cs @@ -36,8 +36,8 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("1.2.6")] -[assembly: AssemblyFileVersion("1.2.6")] +[assembly: AssemblyVersion("1.2.7")] +[assembly: AssemblyFileVersion("1.2.7")] #if SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")] #else diff --git a/src/DataMigration/DataMigration/Az.DataMigration.psd1 b/src/DataMigration/DataMigration/Az.DataMigration.psd1 index 2df85d74fe8d..2c3c52f7a2f1 100644 --- a/src/DataMigration/DataMigration/Az.DataMigration.psd1 +++ b/src/DataMigration/DataMigration/Az.DataMigration.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.DataMigration.dll' diff --git a/src/DataShare/DataShare/Az.DataShare.psd1 b/src/DataShare/DataShare/Az.DataShare.psd1 index f6a5457620aa..6d1c03bd399e 100644 --- a/src/DataShare/DataShare/Az.DataShare.psd1 +++ b/src/DataShare/DataShare/Az.DataShare.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.DataShare.dll' diff --git a/src/DeploymentManager/DeploymentManager/Az.DeploymentManager.psd1 b/src/DeploymentManager/DeploymentManager/Az.DeploymentManager.psd1 index 0edf6de8b3b0..8462090f160a 100644 --- a/src/DeploymentManager/DeploymentManager/Az.DeploymentManager.psd1 +++ b/src/DeploymentManager/DeploymentManager/Az.DeploymentManager.psd1 @@ -52,7 +52,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.DeploymentManager.dll' diff --git a/src/DevSpaces/DevSpaces/Az.DevSpaces.psd1 b/src/DevSpaces/DevSpaces/Az.DevSpaces.psd1 index 0f44c4ff774c..c607ae1c7502 100644 --- a/src/DevSpaces/DevSpaces/Az.DevSpaces.psd1 +++ b/src/DevSpaces/DevSpaces/Az.DevSpaces.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.DevSpaces.dll' diff --git a/src/DevTestLabs/DevTestLabs/Az.DevTestLabs.psd1 b/src/DevTestLabs/DevTestLabs/Az.DevTestLabs.psd1 index 2cde8cb45dcc..08b46e1db339 100644 --- a/src/DevTestLabs/DevTestLabs/Az.DevTestLabs.psd1 +++ b/src/DevTestLabs/DevTestLabs/Az.DevTestLabs.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.DevTestLabs.dll' diff --git a/src/DeviceProvisioningServices/DeviceProvisioningServices/Az.DeviceProvisioningServices.psd1 b/src/DeviceProvisioningServices/DeviceProvisioningServices/Az.DeviceProvisioningServices.psd1 index d2a441a26a5f..f831d1b4b364 100644 --- a/src/DeviceProvisioningServices/DeviceProvisioningServices/Az.DeviceProvisioningServices.psd1 +++ b/src/DeviceProvisioningServices/DeviceProvisioningServices/Az.DeviceProvisioningServices.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.DeviceProvisioningServices.dll' diff --git a/src/Dns/Dns/Az.Dns.psd1 b/src/Dns/Dns/Az.Dns.psd1 index 31532856a126..b8119e757678 100644 --- a/src/Dns/Dns/Az.Dns.psd1 +++ b/src/Dns/Dns/Az.Dns.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Dns.dll' diff --git a/src/EventGrid/EventGrid/Az.EventGrid.psd1 b/src/EventGrid/EventGrid/Az.EventGrid.psd1 index 3c1c312bfd8c..db6f844415af 100644 --- a/src/EventGrid/EventGrid/Az.EventGrid.psd1 +++ b/src/EventGrid/EventGrid/Az.EventGrid.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.EventGrid.dll' diff --git a/src/EventHub/EventHub/Az.EventHub.psd1 b/src/EventHub/EventHub/Az.EventHub.psd1 index c1ea44ce119c..160a7c9a752f 100644 --- a/src/EventHub/EventHub/Az.EventHub.psd1 +++ b/src/EventHub/EventHub/Az.EventHub.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.EventHub.dll' diff --git a/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 b/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 index c81d215e5b17..00338222f04e 100644 --- a/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 +++ b/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.FrontDoor.dll' diff --git a/src/GuestConfiguration/GuestConfiguration/Az.GuestConfiguration.psd1 b/src/GuestConfiguration/GuestConfiguration/Az.GuestConfiguration.psd1 index 10714a22a550..fe3070c1301c 100644 --- a/src/GuestConfiguration/GuestConfiguration/Az.GuestConfiguration.psd1 +++ b/src/GuestConfiguration/GuestConfiguration/Az.GuestConfiguration.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.GuestConfiguration.dll' diff --git a/src/HDInsight/HDInsight/Az.HDInsight.psd1 b/src/HDInsight/HDInsight/Az.HDInsight.psd1 index 3876522ce9de..2a2892dc674d 100644 --- a/src/HDInsight/HDInsight/Az.HDInsight.psd1 +++ b/src/HDInsight/HDInsight/Az.HDInsight.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.HDInsight.dll', diff --git a/src/HealthcareApis/HealthcareApis/Az.HealthcareApis.psd1 b/src/HealthcareApis/HealthcareApis/Az.HealthcareApis.psd1 index 69c3d7d1085c..50c32b4f82e9 100644 --- a/src/HealthcareApis/HealthcareApis/Az.HealthcareApis.psd1 +++ b/src/HealthcareApis/HealthcareApis/Az.HealthcareApis.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.HealthcareApis.dll' diff --git a/src/IotCentral/IotCentral/Az.IotCentral.psd1 b/src/IotCentral/IotCentral/Az.IotCentral.psd1 index 1a17a3525d2e..5a51eb08b809 100644 --- a/src/IotCentral/IotCentral/Az.IotCentral.psd1 +++ b/src/IotCentral/IotCentral/Az.IotCentral.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.IotCentral.dll' diff --git a/src/IotHub/IotHub/Az.IotHub.psd1 b/src/IotHub/IotHub/Az.IotHub.psd1 index 51259669c379..ebe6d0080d90 100644 --- a/src/IotHub/IotHub/Az.IotHub.psd1 +++ b/src/IotHub/IotHub/Az.IotHub.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 2/11/2020 +# Generated on: 3/3/2020 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '2.1.0' +ModuleVersion = '2.2.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.IotHub.dll', @@ -93,14 +93,14 @@ CmdletsToExport = 'Add-AzIotHubKey', 'Get-AzIotHubEventHubConsumerGroup', 'Test-AzIotHubRoute', 'New-AzIotHubKey', 'Invoke-AzIotHubManualFailover', 'Add-AzIotHubMessageEnrichment', 'Get-AzIotHubMessageEnrichment', 'Remove-AzIotHubMessageEnrichment', - 'Set-AzIotHubMessageEnrichment', 'Add-AzIotHubDevice', - 'Get-AzIotHubDevice', 'Remove-AzIotHubDevice', - 'Set-AzIotHubDevice', 'Add-AzIotHubModule', - 'Get-AzIotHubModule', 'Remove-AzIotHubModule', - 'Set-AzIotHubModule', 'Get-AzIotHubDeviceConnectionString', - 'Get-AzIotHubModuleConnectionString', 'Get-AzIotHubDeviceParent', - 'Set-AzIotHubDeviceParent', 'Add-AzIotHubDeviceChildren', + 'Set-AzIotHubMessageEnrichment', 'Add-AzIotHubDevice', + 'Get-AzIotHubDevice', 'Remove-AzIotHubDevice', 'Set-AzIotHubDevice', + 'Add-AzIotHubModule', 'Get-AzIotHubModule', 'Remove-AzIotHubModule', + 'Set-AzIotHubModule', 'Get-AzIotHubDeviceConnectionString', + 'Get-AzIotHubModuleConnectionString', 'Get-AzIotHubDeviceParent', + 'Set-AzIotHubDeviceParent', 'Add-AzIotHubDeviceChildren', 'Remove-AzIotHubDeviceChildren', 'Get-AzIotHubDeviceChildren' + # Variables to export from this module # VariablesToExport = @() @@ -108,7 +108,7 @@ CmdletsToExport = 'Add-AzIotHubKey', 'Get-AzIotHubEventHubConsumerGroup', AliasesToExport = 'Get-AzIotHubEHCG', 'Add-AzIotHubEHCG', 'Remove-AzIotHubEHCG', 'Set-AzIotHubVC', 'Get-AzIotHubCVC', 'Add-AzIotHubMsgEnrich', 'Get-AzIotHubMsgEnrich', 'Remove-AzIotHubMsgEnrich', - 'Set-AzIotHubMsgEnrich', 'Get-AzIotHubDCS', 'Get-AzIotHubMCS', + 'Set-AzIotHubMsgEnrich', 'Get-AzIotHubDCS', 'Get-AzIotHubMCS', 'Add-AzIotHubDCL', 'Remove-AzIotHubDCL', 'Get-AzIotHubDCL' # DSC resources to export from this module @@ -142,7 +142,18 @@ PrivateData = @{ - ''Add-AzIotHubDevice'' - ''Get-AzIotHubDevice'' - ''Remove-AzIotHubDevice'' - - ''Set-AzIotHubDevice''' + - ''Set-AzIotHubDevice'' +* Added support to manage modules on a target Iot device in an Iot Hub. New Cmdlets are: + - ''Add-AzIotHubModule'' + - ''Get-AzIotHubModule'' + - ''Remove-AzIotHubModule'' + - ''Set-AzIotHubModule'' +* Added cmdlet to get the connection string of a target IoT device in an Iot Hub. +* Added cmdlet to get the connection string of a module on a target IoT device in an Iot Hub. +* Added support to get/set parent device of an IoT device. New Cmdlets are: + - ''Get-AzIotHubDeviceParent'' + - ''Set-AzIotHubDeviceParent'' +* Added support to manage device parent-child relationship.' # Prerelease string of this module # Prerelease = '' diff --git a/src/IotHub/IotHub/ChangeLog.md b/src/IotHub/IotHub/ChangeLog.md index b52ebba4877a..5ca653eebed3 100644 --- a/src/IotHub/IotHub/ChangeLog.md +++ b/src/IotHub/IotHub/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 2.2.0 * Added support to manage devices in an Iot Hub. New Cmdlets are: - `Add-AzIotHubDevice` - `Get-AzIotHubDevice` diff --git a/src/IotHub/IotHub/Properties/AssemblyInfo.cs b/src/IotHub/IotHub/Properties/AssemblyInfo.cs index fabd9421b847..5c67471f2278 100644 --- a/src/IotHub/IotHub/Properties/AssemblyInfo.cs +++ b/src/IotHub/IotHub/Properties/AssemblyInfo.cs @@ -31,6 +31,6 @@ // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -// [assembly: AssemblyVersion("2.1.0")] -[assembly: AssemblyVersion("2.1.0")] -[assembly: AssemblyFileVersion("2.1.0")] +// [assembly: AssemblyVersion("2.2.0")] +[assembly: AssemblyVersion("2.2.0")] +[assembly: AssemblyFileVersion("2.2.0")] diff --git a/src/KeyVault/KeyVault/Az.KeyVault.psd1 b/src/KeyVault/KeyVault/Az.KeyVault.psd1 index fd4eda04f8ab..86712dbe55c9 100644 --- a/src/KeyVault/KeyVault/Az.KeyVault.psd1 +++ b/src/KeyVault/KeyVault/Az.KeyVault.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.KeyVault.dll', diff --git a/src/Kusto/Kusto/Az.Kusto.psd1 b/src/Kusto/Kusto/Az.Kusto.psd1 index 2624434161dc..d1e5ce8339a1 100644 --- a/src/Kusto/Kusto/Az.Kusto.psd1 +++ b/src/Kusto/Kusto/Az.Kusto.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Kusto.dll' diff --git a/src/LogicApp/LogicApp/Az.LogicApp.psd1 b/src/LogicApp/LogicApp/Az.LogicApp.psd1 index bf59959d40e0..9a5a83eb4253 100644 --- a/src/LogicApp/LogicApp/Az.LogicApp.psd1 +++ b/src/LogicApp/LogicApp/Az.LogicApp.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Logic.dll' diff --git a/src/MachineLearning/MachineLearning/Az.MachineLearning.psd1 b/src/MachineLearning/MachineLearning/Az.MachineLearning.psd1 index 48d29dee3b0e..6c18f97b4fb0 100644 --- a/src/MachineLearning/MachineLearning/Az.MachineLearning.psd1 +++ b/src/MachineLearning/MachineLearning/Az.MachineLearning.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.MachineLearning.dll', diff --git a/src/Maintenance/Maintenance/Az.Maintenance.psd1 b/src/Maintenance/Maintenance/Az.Maintenance.psd1 index f7fcb33fae18..147b47239213 100644 --- a/src/Maintenance/Maintenance/Az.Maintenance.psd1 +++ b/src/Maintenance/Maintenance/Az.Maintenance.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 1/21/2020 +# Generated on: 3/3/2020 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '0.1.2' +ModuleVersion = '0.1.3' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'AutoMapper.dll', 'Microsoft.Azure.Management.Maintenance.dll' @@ -115,8 +115,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Update command will display pending updates by default -* Added sample output to help documentation of Get-AZMaintenanceUpdate' + ReleaseNotes = '* Got ''Az-MaintenanceConfiguration'' will honor filters while listing maintenance configurations' # Prerelease string of this module Prerelease = 'preview' diff --git a/src/Maintenance/Maintenance/ChangeLog.md b/src/Maintenance/Maintenance/ChangeLog.md index 30df87750024..b47f867663b9 100644 --- a/src/Maintenance/Maintenance/ChangeLog.md +++ b/src/Maintenance/Maintenance/ChangeLog.md @@ -19,6 +19,8 @@ --> ## Upcoming Release + +## Version 0.1.3 * Got `Az-MaintenanceConfiguration` will honor filters while listing maintenance configurations ## Version 0.1.2 diff --git a/src/Maintenance/Maintenance/Properties/AssemblyInfo.cs b/src/Maintenance/Maintenance/Properties/AssemblyInfo.cs index 6651e59bf6aa..dc9f3aa3a645 100644 --- a/src/Maintenance/Maintenance/Properties/AssemblyInfo.cs +++ b/src/Maintenance/Maintenance/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.0")] -[assembly: AssemblyVersion("0.1.2")] -[assembly: AssemblyFileVersion("0.1.2")] +[assembly: AssemblyVersion("0.1.3")] +[assembly: AssemblyFileVersion("0.1.3")] diff --git a/src/ManagedServiceIdentity/ManagedServiceIdentity/Az.ManagedServiceIdentity.psd1 b/src/ManagedServiceIdentity/ManagedServiceIdentity/Az.ManagedServiceIdentity.psd1 index 217df264476d..e3d53b141e25 100644 --- a/src/ManagedServiceIdentity/ManagedServiceIdentity/Az.ManagedServiceIdentity.psd1 +++ b/src/ManagedServiceIdentity/ManagedServiceIdentity/Az.ManagedServiceIdentity.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.ManagedServiceIdentity.dll' diff --git a/src/ManagedServices/ManagedServices/Az.ManagedServices.psd1 b/src/ManagedServices/ManagedServices/Az.ManagedServices.psd1 index c4b84d8c80c3..368f643deaab 100644 --- a/src/ManagedServices/ManagedServices/Az.ManagedServices.psd1 +++ b/src/ManagedServices/ManagedServices/Az.ManagedServices.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.ManagedServices.dll' diff --git a/src/ManagementPartner/ManagementPartner/Az.ManagementPartner.psd1 b/src/ManagementPartner/ManagementPartner/Az.ManagementPartner.psd1 index ba1b037dd8b9..f8f8cbf18b1f 100644 --- a/src/ManagementPartner/ManagementPartner/Az.ManagementPartner.psd1 +++ b/src/ManagementPartner/ManagementPartner/Az.ManagementPartner.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.ManagementPartner.dll' diff --git a/src/Maps/Maps/Az.Maps.psd1 b/src/Maps/Maps/Az.Maps.psd1 index 181d0a8c8935..046764f6f36d 100644 --- a/src/Maps/Maps/Az.Maps.psd1 +++ b/src/Maps/Maps/Az.Maps.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Maps.dll' diff --git a/src/MarketplaceOrdering/MarketplaceOrdering/Az.MarketplaceOrdering.psd1 b/src/MarketplaceOrdering/MarketplaceOrdering/Az.MarketplaceOrdering.psd1 index 6458b7470e8d..1f246fa32dc9 100644 --- a/src/MarketplaceOrdering/MarketplaceOrdering/Az.MarketplaceOrdering.psd1 +++ b/src/MarketplaceOrdering/MarketplaceOrdering/Az.MarketplaceOrdering.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.MarketplaceOrdering.dll' diff --git a/src/Media/Media/Az.Media.psd1 b/src/Media/Media/Az.Media.psd1 index 1a1e115384a5..2559e1a4f668 100644 --- a/src/Media/Media/Az.Media.psd1 +++ b/src/Media/Media/Az.Media.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Media.dll' diff --git a/src/MixedReality/MixedReality/Az.MixedReality.psd1 b/src/MixedReality/MixedReality/Az.MixedReality.psd1 index f9be22cf26c6..8ecc11cd2f0e 100644 --- a/src/MixedReality/MixedReality/Az.MixedReality.psd1 +++ b/src/MixedReality/MixedReality/Az.MixedReality.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.MixedReality.dll' diff --git a/src/Monitor/Monitor/Az.Monitor.psd1 b/src/Monitor/Monitor/Az.Monitor.psd1 index 33ef7fe6bc4a..2a5a664ae5ce 100644 --- a/src/Monitor/Monitor/Az.Monitor.psd1 +++ b/src/Monitor/Monitor/Az.Monitor.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Monitor.dll' diff --git a/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 b/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 index ea94258b1bed..e0166f66899f 100644 --- a/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 +++ b/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.NetApp.dll' diff --git a/src/Network/Network/Az.Network.psd1 b/src/Network/Network/Az.Network.psd1 index eb1a1d12108b..648aae0bd27d 100644 --- a/src/Network/Network/Az.Network.psd1 +++ b/src/Network/Network/Az.Network.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'AutoMapper.dll', 'Microsoft.Azure.Management.Network.dll', diff --git a/src/NotificationHubs/NotificationHubs/Az.NotificationHubs.psd1 b/src/NotificationHubs/NotificationHubs/Az.NotificationHubs.psd1 index 0dc917eb03e6..b757db70b43c 100644 --- a/src/NotificationHubs/NotificationHubs/Az.NotificationHubs.psd1 +++ b/src/NotificationHubs/NotificationHubs/Az.NotificationHubs.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.NotificationHubs.dll' diff --git a/src/OperationalInsights/OperationalInsights/Az.OperationalInsights.psd1 b/src/OperationalInsights/OperationalInsights/Az.OperationalInsights.psd1 index f87005b41a54..f65f0455b608 100644 --- a/src/OperationalInsights/OperationalInsights/Az.OperationalInsights.psd1 +++ b/src/OperationalInsights/OperationalInsights/Az.OperationalInsights.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.OperationalInsights.dll', diff --git a/src/Peering/Peering/Az.Peering.psd1 b/src/Peering/Peering/Az.Peering.psd1 index 5bbf0b466dd1..1461a5a53093 100644 --- a/src/Peering/Peering/Az.Peering.psd1 +++ b/src/Peering/Peering/Az.Peering.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Peering.dll', 'AutoMapper.dll' diff --git a/src/PolicyInsights/PolicyInsights/Az.PolicyInsights.psd1 b/src/PolicyInsights/PolicyInsights/Az.PolicyInsights.psd1 index bad54053794b..1cd96e177746 100644 --- a/src/PolicyInsights/PolicyInsights/Az.PolicyInsights.psd1 +++ b/src/PolicyInsights/PolicyInsights/Az.PolicyInsights.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.PolicyInsights.dll' diff --git a/src/PowerBIEmbedded/PowerBIEmbedded/Az.PowerBIEmbedded.psd1 b/src/PowerBIEmbedded/PowerBIEmbedded/Az.PowerBIEmbedded.psd1 index e7d31ad1d0c7..0d424bc9993b 100644 --- a/src/PowerBIEmbedded/PowerBIEmbedded/Az.PowerBIEmbedded.psd1 +++ b/src/PowerBIEmbedded/PowerBIEmbedded/Az.PowerBIEmbedded.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.PowerBIEmbedded.dll', diff --git a/src/PrivateDns/PrivateDns/Az.PrivateDns.psd1 b/src/PrivateDns/PrivateDns/Az.PrivateDns.psd1 index 2536b1dc398c..e1abae92adbe 100644 --- a/src/PrivateDns/PrivateDns/Az.PrivateDns.psd1 +++ b/src/PrivateDns/PrivateDns/Az.PrivateDns.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.PrivateDns.dll' diff --git a/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 b/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 index 975c0287237a..238a2a18adfc 100644 --- a/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 +++ b/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 @@ -54,7 +54,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'AutoMapper.dll', diff --git a/src/RedisCache/RedisCache/Az.RedisCache.psd1 b/src/RedisCache/RedisCache/Az.RedisCache.psd1 index 8d757ddc0acd..24a970155770 100644 --- a/src/RedisCache/RedisCache/Az.RedisCache.psd1 +++ b/src/RedisCache/RedisCache/Az.RedisCache.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Insights.dll', diff --git a/src/Relay/Relay/Az.Relay.psd1 b/src/Relay/Relay/Az.Relay.psd1 index 78fa63b826b6..094e7e5bdd50 100644 --- a/src/Relay/Relay/Az.Relay.psd1 +++ b/src/Relay/Relay/Az.Relay.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Relay.dll' diff --git a/src/Reservations/Reservations/Az.Reservations.psd1 b/src/Reservations/Reservations/Az.Reservations.psd1 index bda2e48d6f51..83e11d448add 100644 --- a/src/Reservations/Reservations/Az.Reservations.psd1 +++ b/src/Reservations/Reservations/Az.Reservations.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Reservations.dll' diff --git a/src/ResourceGraph/ResourceGraph/Az.ResourceGraph.psd1 b/src/ResourceGraph/ResourceGraph/Az.ResourceGraph.psd1 index 860cdabdc44d..567735dc30d1 100644 --- a/src/ResourceGraph/ResourceGraph/Az.ResourceGraph.psd1 +++ b/src/ResourceGraph/ResourceGraph/Az.ResourceGraph.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.ResourceGraph.dll' diff --git a/src/Resources/Resources/Az.Resources.psd1 b/src/Resources/Resources/Az.Resources.psd1 index 0e27c23d0712..9e9f725b7afc 100644 --- a/src/Resources/Resources/Az.Resources.psd1 +++ b/src/Resources/Resources/Az.Resources.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 2/11/2020 +# Generated on: 3/3/2020 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '1.11.0' +ModuleVersion = '1.12.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -54,7 +54,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Authorization.dll', @@ -185,14 +185,20 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Refactored template deployment cmdlets - - Added new cmdlets for managing deployments at management group: *-AzManagementGroupDeployment - - Added new cmdlets for managing deployments at tenant scope: *-AzTenantDeployment - - Refactored *-AzDeployment cmdlets to work specifically at subscription scope - - Created aliases *-AzSubscriptionDeployment for *-AzDeployment cmdlets -* Fixed ''Update-AzADApplication'' when parameter ''AvailableToOtherTenants'' is not set -* Removed ApplicationObjectWithoutCredentialParameterSet to avoid AmbiguousParameterSetException. -* Regenerated help files' + ReleaseNotes = '* Fixed for null reference bug in ''Get-AzRoleAssignment'' +* Marked switch ''-Force'' and ''-PassThru'' optional in ''Remove-AzADGroup'' [#10849] +* Fixed issue that ''MailNickname'' doesn''t return in ''Remove-AzADGroup'' [#11167] +* Fixed issue that ''Remove-AzADGroup'' pipe operation doesn''t work [#11171] +* Fixed for null reference bug in GetAzureRoleAssignmentCommand +* Added breaking change attributes for upcoming changes to policy cmdlets +* Updated ''Get-AzResourceGroup'' to perform resource group tag filtering on server-side +* Extended Tag cmdlets to accept -ResourceId + - Get-AzTag -ResourceId + - New-AzTag -ResourceId + - Remove-AzTag -ResourceId +* Added new Tag cmdlet + - Update-AzTag -ResourceId +* Brought ScopedDeployment from SDK 3.3.0 ' # Prerelease string of this module # Prerelease = '' diff --git a/src/Resources/Resources/ChangeLog.md b/src/Resources/Resources/ChangeLog.md index c0f6ecaebe2a..dc3045ebd2f1 100644 --- a/src/Resources/Resources/ChangeLog.md +++ b/src/Resources/Resources/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 1.12.0 * Fixed for null reference bug in `Get-AzRoleAssignment` * Marked switch `-Force` and `-PassThru` optional in `Remove-AzADGroup` [#10849] * Fixed issue that `MailNickname` doesn't return in `Remove-AzADGroup` [#11167] diff --git a/src/Resources/Resources/Properties/AssemblyInfo.cs b/src/Resources/Resources/Properties/AssemblyInfo.cs index 08650f58207e..0cee722ba41b 100644 --- a/src/Resources/Resources/Properties/AssemblyInfo.cs +++ b/src/Resources/Resources/Properties/AssemblyInfo.cs @@ -25,8 +25,8 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("e386b843-f3f0-4db3-8664-37d16b860dde")] -[assembly: AssemblyVersion("1.11.0")] -[assembly: AssemblyFileVersion("1.11.0")] +[assembly: AssemblyVersion("1.12.0")] +[assembly: AssemblyFileVersion("1.12.0")] #if !SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Resources.Test")] #endif diff --git a/src/Search/Search/Az.Search.psd1 b/src/Search/Search/Az.Search.psd1 index 8c12634c9548..4d5e6341e2c5 100644 --- a/src/Search/Search/Az.Search.psd1 +++ b/src/Search/Search/Az.Search.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Search.dll' diff --git a/src/Security/Security/Az.Security.psd1 b/src/Security/Security/Az.Security.psd1 index 36b5ef91d434..662f58af45f1 100644 --- a/src/Security/Security/Az.Security.psd1 +++ b/src/Security/Security/Az.Security.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.SecurityCenter.dll' diff --git a/src/ServiceBus/ServiceBus/Az.ServiceBus.psd1 b/src/ServiceBus/ServiceBus/Az.ServiceBus.psd1 index 55f2ef24b426..1eb7e380ecbd 100644 --- a/src/ServiceBus/ServiceBus/Az.ServiceBus.psd1 +++ b/src/ServiceBus/ServiceBus/Az.ServiceBus.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.ServiceBus.dll' diff --git a/src/ServiceFabric/ServiceFabric/Az.ServiceFabric.psd1 b/src/ServiceFabric/ServiceFabric/Az.ServiceFabric.psd1 index 0c991b5b9c8d..db217611702d 100644 --- a/src/ServiceFabric/ServiceFabric/Az.ServiceFabric.psd1 +++ b/src/ServiceFabric/ServiceFabric/Az.ServiceFabric.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.KeyVault.dll', diff --git a/src/SignalR/SignalR/Az.SignalR.psd1 b/src/SignalR/SignalR/Az.SignalR.psd1 index 8c66cdda908d..15621ca5c4af 100644 --- a/src/SignalR/SignalR/Az.SignalR.psd1 +++ b/src/SignalR/SignalR/Az.SignalR.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.SignalR.dll' diff --git a/src/Sql/Sql/Az.Sql.psd1 b/src/Sql/Sql/Az.Sql.psd1 index bb792f1a6688..d1d747d35d88 100644 --- a/src/Sql/Sql/Az.Sql.psd1 +++ b/src/Sql/Sql/Az.Sql.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 2/11/2020 +# Generated on: 3/3/2020 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '2.3.0' +ModuleVersion = '2.4.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Sql.dll', @@ -308,9 +308,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Added support for cross subscription point in time restore on Managed Instances. -* Added support for changing existing Sql Managed Instance hardware generation -* Fixed ''Update-AzSqlServerVulnerabilityAssessmentSetting'' help examples: parameter/property output - EmailAdmins' + ReleaseNotes = '* Added PublicNetworkAccess to New-AzSqlServer and Set-AzSqlServer' # Prerelease string of this module # Prerelease = '' diff --git a/src/Sql/Sql/ChangeLog.md b/src/Sql/Sql/ChangeLog.md index 8d46cec92d70..fb6113725a35 100644 --- a/src/Sql/Sql/ChangeLog.md +++ b/src/Sql/Sql/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 2.4.0 * Added PublicNetworkAccess to New-AzSqlServer and Set-AzSqlServer ## Version 2.3.0 diff --git a/src/Sql/Sql/Properties/AssemblyInfo.cs b/src/Sql/Sql/Properties/AssemblyInfo.cs index b0c864a8d334..2f8a93541953 100644 --- a/src/Sql/Sql/Properties/AssemblyInfo.cs +++ b/src/Sql/Sql/Properties/AssemblyInfo.cs @@ -44,8 +44,8 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("2.3.0")] -[assembly: AssemblyFileVersion("2.3.0")] +[assembly: AssemblyVersion("2.4.0")] +[assembly: AssemblyFileVersion("2.4.0")] #if !SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Resources.Test")] #endif diff --git a/src/Storage/Storage.Management/Az.Storage.psd1 b/src/Storage/Storage.Management/Az.Storage.psd1 index 17264d0bfe1e..f0ea5908da6e 100644 --- a/src/Storage/Storage.Management/Az.Storage.psd1 +++ b/src/Storage/Storage.Management/Az.Storage.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 1/21/2020 +# Generated on: 3/3/2020 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '1.12.0' +ModuleVersion = '1.13.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Storage.dll', @@ -195,10 +195,11 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Support set Table/Queue Encryption Keytype in Create Storage Account - - New-AzRmStorageAccount -* Show RequestId when StorageException don''t have ExtendedErrorInformation -* Fix the Example 6 of cmdlet Start-AzStorageBlobCopy' + ReleaseNotes = '* Supported AllowProtectedAppendWrite in ImmutabilityPolicy + - ''Set-AzRmStorageContainerImmutabilityPolicy'' +* Added breaking change warning message for AzureStorageTable type change in a future release + - ''New-AzStorageTable'' + - ''Get-AzStorageTable''' # Prerelease string of this module # Prerelease = '' diff --git a/src/Storage/Storage.Management/ChangeLog.md b/src/Storage/Storage.Management/ChangeLog.md index 81bbb2aea571..df3461394725 100644 --- a/src/Storage/Storage.Management/ChangeLog.md +++ b/src/Storage/Storage.Management/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 1.13.0 * Supported AllowProtectedAppendWrite in ImmutabilityPolicy - `Set-AzRmStorageContainerImmutabilityPolicy` * Added breaking change warning message for AzureStorageTable type change in a future release diff --git a/src/Storage/Storage.Management/Properties/AssemblyInfo.cs b/src/Storage/Storage.Management/Properties/AssemblyInfo.cs index 6166b2cf891e..34ef6d209521 100644 --- a/src/Storage/Storage.Management/Properties/AssemblyInfo.cs +++ b/src/Storage/Storage.Management/Properties/AssemblyInfo.cs @@ -46,5 +46,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("1.12.0")] -[assembly: AssemblyFileVersion("1.12.0")] +[assembly: AssemblyVersion("1.13.0")] +[assembly: AssemblyFileVersion("1.13.0")] diff --git a/src/StorageSync/StorageSync/Az.StorageSync.psd1 b/src/StorageSync/StorageSync/Az.StorageSync.psd1 index 524a876ea6fb..6393d004ddd4 100644 --- a/src/StorageSync/StorageSync/Az.StorageSync.psd1 +++ b/src/StorageSync/StorageSync/Az.StorageSync.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.StorageSync.dll', diff --git a/src/StreamAnalytics/StreamAnalytics/Az.StreamAnalytics.psd1 b/src/StreamAnalytics/StreamAnalytics/Az.StreamAnalytics.psd1 index 170681775200..35d80d6fc270 100644 --- a/src/StreamAnalytics/StreamAnalytics/Az.StreamAnalytics.psd1 +++ b/src/StreamAnalytics/StreamAnalytics/Az.StreamAnalytics.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.StreamAnalytics.dll' diff --git a/src/Subscription/Subscription/Az.Subscription.psd1 b/src/Subscription/Subscription/Az.Subscription.psd1 index 22314d9a9984..4f981dc34bb9 100644 --- a/src/Subscription/Subscription/Az.Subscription.psd1 +++ b/src/Subscription/Subscription/Az.Subscription.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Subscription.dll' diff --git a/src/TrafficManager/TrafficManager/Az.TrafficManager.psd1 b/src/TrafficManager/TrafficManager/Az.TrafficManager.psd1 index b0164cff0cf7..d043d3f6a6d7 100644 --- a/src/TrafficManager/TrafficManager/Az.TrafficManager.psd1 +++ b/src/TrafficManager/TrafficManager/Az.TrafficManager.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.TrafficManager.dll' diff --git a/src/Websites/Websites/Az.Websites.psd1 b/src/Websites/Websites/Az.Websites.psd1 index 888ed3a2111c..54607156ae09 100644 --- a/src/Websites/Websites/Az.Websites.psd1 +++ b/src/Websites/Websites/Az.Websites.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 1/21/2020 +# Generated on: 3/3/2020 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '1.6.0' +ModuleVersion = '1.7.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Websites.dll' @@ -136,8 +136,11 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Set-AzWebapp and Set-AzWebappSlot supports AlwaysOn, MinTls and FtpsState properties -* Fixing issue where setting HttpsOnly along with changing AppservicePlan at the same time using the single Set-AzWebApp Command, was resetting HttpsOnly to default value' + ReleaseNotes = '* Added Tag parameter for ''New-AzAppServicePlan'' and ''Set-AzAppServicePlan'' +* Stop cmdlt execution if an exception is thrown when adding a custom domain to a website +* Added support to perform operations for App Services not in the same resource group as the App Service Plan +* Applied access restriction to WebApp/Function in different resource groups +* Fixed issue to set custom hostnames for WebAppSlots' # Prerelease string of this module # Prerelease = '' diff --git a/src/Websites/Websites/ChangeLog.md b/src/Websites/Websites/ChangeLog.md index 91d3baf03764..955306dce606 100644 --- a/src/Websites/Websites/ChangeLog.md +++ b/src/Websites/Websites/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 1.7.0 * Added Tag parameter for `New-AzAppServicePlan` and `Set-AzAppServicePlan` * Stop cmdlt execution if an exception is thrown when adding a custom domain to a website * Added support to perform operations for App Services not in the same resource group as the App Service Plan diff --git a/src/Websites/Websites/Properties/AssemblyInfo.cs b/src/Websites/Websites/Properties/AssemblyInfo.cs index f93b55b7ffc7..9cdffa56a175 100644 --- a/src/Websites/Websites/Properties/AssemblyInfo.cs +++ b/src/Websites/Websites/Properties/AssemblyInfo.cs @@ -25,8 +25,8 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("76158def-441b-472a-9b1a-a75726a813f4")] -[assembly: AssemblyVersion("1.6.0")] -[assembly: AssemblyFileVersion("1.6.0")] +[assembly: AssemblyVersion("1.7.0")] +[assembly: AssemblyFileVersion("1.7.0")] #if !SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Websites.Test")] #endif diff --git a/tools/Az/Az.psd1 b/tools/Az/Az.psd1 index 4b58d2c0c2d3..2ed92814b255 100644 --- a/tools/Az/Az.psd1 +++ b/tools/Az/Az.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 2/13/2020 +# Generated on: 3/3/2020 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '3.5.0' +ModuleVersion = '3.6.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -53,11 +53,11 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }, +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }, @{ModuleName = 'Az.Advisor'; RequiredVersion = '1.1.1'; }, @{ModuleName = 'Az.Aks'; RequiredVersion = '1.0.3'; }, @{ModuleName = 'Az.AnalysisServices'; RequiredVersion = '1.1.2'; }, - @{ModuleName = 'Az.ApiManagement'; RequiredVersion = '1.3.4'; }, + @{ModuleName = 'Az.ApiManagement'; RequiredVersion = '1.4.0'; }, @{ModuleName = 'Az.ApplicationInsights'; RequiredVersion = '1.0.3'; }, @{ModuleName = 'Az.Automation'; RequiredVersion = '1.3.6'; }, @{ModuleName = 'Az.Batch'; RequiredVersion = '2.0.2'; }, @@ -70,7 +70,7 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }, @{ModuleName = 'Az.DataBoxEdge'; RequiredVersion = '1.1.0'; }, @{ModuleName = 'Az.DataFactory'; RequiredVersion = '1.6.1'; }, @{ModuleName = 'Az.DataLakeAnalytics'; RequiredVersion = '1.0.2'; }, - @{ModuleName = 'Az.DataLakeStore'; RequiredVersion = '1.2.6'; }, + @{ModuleName = 'Az.DataLakeStore'; RequiredVersion = '1.2.7'; }, @{ModuleName = 'Az.DeploymentManager'; RequiredVersion = '1.1.0'; }, @{ModuleName = 'Az.DevTestLabs'; RequiredVersion = '1.0.2'; }, @{ModuleName = 'Az.Dns'; RequiredVersion = '1.1.2'; }, @@ -79,7 +79,7 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }, @{ModuleName = 'Az.FrontDoor'; RequiredVersion = '1.4.0'; }, @{ModuleName = 'Az.HDInsight'; RequiredVersion = '3.0.3'; }, @{ModuleName = 'Az.HealthcareApis'; RequiredVersion = '1.0.1'; }, - @{ModuleName = 'Az.IotHub'; RequiredVersion = '2.1.0'; }, + @{ModuleName = 'Az.IotHub'; RequiredVersion = '2.2.0'; }, @{ModuleName = 'Az.KeyVault'; RequiredVersion = '1.5.1'; }, @{ModuleName = 'Az.LogicApp'; RequiredVersion = '1.3.2'; }, @{ModuleName = 'Az.MachineLearning'; RequiredVersion = '1.1.3'; }, @@ -96,17 +96,17 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }, @{ModuleName = 'Az.RecoveryServices'; RequiredVersion = '2.7.0'; }, @{ModuleName = 'Az.RedisCache'; RequiredVersion = '1.2.1'; }, @{ModuleName = 'Az.Relay'; RequiredVersion = '1.0.3'; }, - @{ModuleName = 'Az.Resources'; RequiredVersion = '1.11.0'; }, + @{ModuleName = 'Az.Resources'; RequiredVersion = '1.12.0'; }, @{ModuleName = 'Az.ServiceBus'; RequiredVersion = '1.4.1'; }, @{ModuleName = 'Az.ServiceFabric'; RequiredVersion = '2.0.1'; }, @{ModuleName = 'Az.SignalR'; RequiredVersion = '1.1.1'; }, - @{ModuleName = 'Az.Sql'; RequiredVersion = '2.3.0'; }, + @{ModuleName = 'Az.Sql'; RequiredVersion = '2.4.0'; }, @{ModuleName = 'Az.SqlVirtualMachine'; RequiredVersion = '1.1.0'; }, - @{ModuleName = 'Az.Storage'; RequiredVersion = '1.12.0'; }, + @{ModuleName = 'Az.Storage'; RequiredVersion = '1.13.0'; }, @{ModuleName = 'Az.StorageSync'; RequiredVersion = '1.2.3'; }, @{ModuleName = 'Az.StreamAnalytics'; RequiredVersion = '1.0.1'; }, @{ModuleName = 'Az.TrafficManager'; RequiredVersion = '1.0.3'; }, - @{ModuleName = 'Az.Websites'; RequiredVersion = '1.6.0'; }) + @{ModuleName = 'Az.Websites'; RequiredVersion = '1.7.0'; }) # Assemblies that must be loaded prior to importing this module # RequiredAssemblies = @() @@ -162,22 +162,20 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '3.5.0 - February 2020 + ReleaseNotes = '3.6.0 - March 2020 Az.Accounts -* Added SubscriptionId, TenantId, and execution time into data of client side telemetry +* Open Azure PowerShell survey page in ''Send-Feedback'' [#11020] +* Display Azure PowerShell survey URL in ''Resolve-Error'' [#11021] +* Added Az version in UserAgent -Az.Automation -* Fixed typo in Example 1 in reference documentation for ''New-AzAutomationSoftwareUpdateConfiguration'' +Az.ApiManagement +* Added support for retrieving and configuring Custom Domain on the DeveloperPortal Endpoint [#11007] +* ''Export-AzApiManagementApi'' Added support for downloading Api Definition in Json format [#9987] +* ''Import-AzApiManagementApi'' Added support for importing OpenApi 3.0 definition from Json document +* ''New-AzApiManagementIdentityProvider'' and ''Set-AzApiManagementIdentityProvider'' Added support for configuring ''Signin Tenant'' for AAD B2C Provider [#9784] -Az.CognitiveServices -* Updated SDK to 7.0 -* Improved error message when server responses empty body - -Az.Compute -* Allowed empty value for ProximityPlacementGroupId during update - -Az.FrontDoor -* Added cmdlet to get managed rule definitions that can be used in WAF +Az.DataLakeStore +* Added reference to System.Buffers explicitly in csproj and psd1. Az.IotHub * Added support to manage devices in an Iot Hub. New Cmdlets are: @@ -185,45 +183,50 @@ Az.IotHub - ''Get-AzIotHubDevice'' - ''Remove-AzIotHubDevice'' - ''Set-AzIotHubDevice'' - -Az.KeyVault -* Fixed duplicated text for Add-AzKeyVaultKey.md - -Az.Monitor -* Fixed description of the Get-AzLog cmdlet. -* A new parameter called ActionGroupId was added to ''New-AzMetricAlertRuleV2'' command. - - The user can provide either ActionGroupId(string) or ActionGorup(ActivityLogAlertActionGroup). - -Az.Network -* Added one extra parameter note for parameter ''-EnableProxyProtocol'' for ''New-AzPrivateLinkService'' cmdlet. -* Fixed FilterData example in Start-AzVirtualNetworkGatewayConnectionPacketCapture.md and Start-AzVirtualnetworkGatewayPacketCapture.md. -* Added Packet Capture example for capture all inner and outer packets in Start-AzVirtualNetworkGatewayConnectionPacketCapture.md and Start-AzVirtualnetworkGatewayPacketCapture.md. -* Supported Azure Firewall Policy on VNet Firewalls - - No new cmdlets are added. Relaxing the restriction for firewall policy on VNet firewalls - -Az.RecoveryServices -* Added Support for Restore-as-files for SQL Databases. +* Added support to manage modules on a target Iot device in an Iot Hub. New Cmdlets are: + - ''Add-AzIotHubModule'' + - ''Get-AzIotHubModule'' + - ''Remove-AzIotHubModule'' + - ''Set-AzIotHubModule'' +* Added cmdlet to get the connection string of a target IoT device in an Iot Hub. +* Added cmdlet to get the connection string of a module on a target IoT device in an Iot Hub. +* Added support to get/set parent device of an IoT device. New Cmdlets are: + - ''Get-AzIotHubDeviceParent'' + - ''Set-AzIotHubDeviceParent'' +* Added support to manage device parent-child relationship. Az.Resources -* Refactored template deployment cmdlets - - Added new cmdlets for managing deployments at management group: *-AzManagementGroupDeployment - - Added new cmdlets for managing deployments at tenant scope: *-AzTenantDeployment - - Refactored *-AzDeployment cmdlets to work specifically at subscription scope - - Created aliases *-AzSubscriptionDeployment for *-AzDeployment cmdlets -* Fixed ''Update-AzADApplication'' when parameter ''AvailableToOtherTenants'' is not set -* Removed ApplicationObjectWithoutCredentialParameterSet to avoid AmbiguousParameterSetException. -* Regenerated help files +* Fixed for null reference bug in ''Get-AzRoleAssignment'' +* Marked switch ''-Force'' and ''-PassThru'' optional in ''Remove-AzADGroup'' [#10849] +* Fixed issue that ''MailNickname'' doesn''t return in ''Remove-AzADGroup'' [#11167] +* Fixed issue that ''Remove-AzADGroup'' pipe operation doesn''t work [#11171] +* Fixed for null reference bug in GetAzureRoleAssignmentCommand +* Added breaking change attributes for upcoming changes to policy cmdlets +* Updated ''Get-AzResourceGroup'' to perform resource group tag filtering on server-side +* Extended Tag cmdlets to accept -ResourceId + - Get-AzTag -ResourceId + - New-AzTag -ResourceId + - Remove-AzTag -ResourceId +* Added new Tag cmdlet + - Update-AzTag -ResourceId +* Brought ScopedDeployment from SDK 3.3.0 Az.Sql -* Added support for cross subscription point in time restore on Managed Instances. -* Added support for changing existing Sql Managed Instance hardware generation -* Fixed ''Update-AzSqlServerVulnerabilityAssessmentSetting'' help examples: parameter/property output - EmailAdmins - -Az.SqlVirtualMachine -* Added cmdlets for Availability Group Listener - -Az.StorageSync -* Updated supported character sets in ''Invoke-AzStorageSyncCompatibilityCheck''. +* Added PublicNetworkAccess to New-AzSqlServer and Set-AzSqlServer + +Az.Storage +* Supported AllowProtectedAppendWrite in ImmutabilityPolicy + - ''Set-AzRmStorageContainerImmutabilityPolicy'' +* Added breaking change warning message for AzureStorageTable type change in a future release + - ''New-AzStorageTable'' + - ''Get-AzStorageTable'' + +Az.Websites +* Added Tag parameter for ''New-AzAppServicePlan'' and ''Set-AzAppServicePlan'' +* Stop cmdlt execution if an exception is thrown when adding a custom domain to a website +* Added support to perform operations for App Services not in the same resource group as the App Service Plan +* Applied access restriction to WebApp/Function in different resource groups +* Fixed issue to set custom hostnames for WebAppSlots ' # Prerelease string of this module diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Accounts.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Accounts.dll.json index 735d62d165b5..0100563ac21f 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Accounts.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Accounts.dll.json @@ -14,7 +14,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.CommonModule", "Name": "Microsoft.Azure.Commands.Profile.CommonModule.PSAzureServiceProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.CommonModule.PSAzureServiceProfile, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.CommonModule.PSAzureServiceProfile, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Description": "System.String" @@ -164,7 +164,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Common", "Name": "Microsoft.Azure.Commands.Common.VTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.VTable, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.VTable, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ProfileName": "System.String" }, @@ -787,7 +787,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1027,7 +1027,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1380,7 +1380,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1709,7 +1709,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2086,7 +2086,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2419,7 +2419,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2844,7 +2844,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3272,7 +3272,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3752,7 +3752,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3921,7 +3921,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4125,7 +4125,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4363,7 +4363,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4601,7 +4601,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4778,7 +4778,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4931,7 +4931,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5767,7 +5767,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6255,7 +6255,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6432,7 +6432,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6585,7 +6585,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8078,7 +8078,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8380,7 +8380,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8688,7 +8688,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9011,7 +9011,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9293,7 +9293,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9548,7 +9548,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9776,7 +9776,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10793,7 +10793,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11157,7 +11157,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11987,7 +11987,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12462,7 +12462,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12976,7 +12976,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13142,7 +13142,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13939,7 +13939,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14303,7 +14303,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15133,7 +15133,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15608,7 +15608,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16752,7 +16752,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Errors", "Name": "Microsoft.Azure.Commands.Profile.Errors.AzureErrorRecord", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureErrorRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureErrorRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ErrorCategory": "System.Management.Automation.ErrorCategoryInfo", "ErrorDetails": "System.Management.Automation.ErrorDetails", @@ -16809,7 +16809,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Errors", "Name": "Microsoft.Azure.Commands.Profile.Errors.AzureExceptionRecord", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureExceptionRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureExceptionRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "InnerException": "System.Boolean", "Exception": "System.Exception", @@ -16879,7 +16879,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Errors", "Name": "Microsoft.Azure.Commands.Profile.Errors.AzureRestExceptionRecord", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureRestExceptionRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureRestExceptionRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RequestMessage": "Microsoft.Azure.Commands.Profile.Errors.HttpRequestInfo", "ServerResponse": "Microsoft.Azure.Commands.Profile.Errors.HttpResponseInfo", @@ -17312,7 +17312,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17526,7 +17526,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17727,7 +17727,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17887,7 +17887,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Models", "Name": "Microsoft.Azure.Commands.Profile.Models.PSResourceGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Hashtable", "ResourceGroupName": "System.String", @@ -18120,7 +18120,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Models", "Name": "Microsoft.Azure.Commands.Profile.Models.PSResourceGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Hashtable", "ResourceGroupName": "System.String", @@ -18213,7 +18213,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18403,7 +18403,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18580,7 +18580,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19286,7 +19286,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19428,7 +19428,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19646,7 +19646,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19788,7 +19788,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20006,7 +20006,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20148,7 +20148,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20363,7 +20363,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20553,7 +20553,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20908,7 +20908,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21183,7 +21183,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21384,7 +21384,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21739,7 +21739,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22014,7 +22014,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22215,7 +22215,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22534,7 +22534,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22761,7 +22761,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22914,7 +22914,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24000,7 +24000,7 @@ "Microsoft.Azure.Commands.Profile.Errors.HttpRequestInfo": { "Namespace": "Microsoft.Azure.Commands.Profile.Errors", "Name": "Microsoft.Azure.Commands.Profile.Errors.HttpRequestInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.HttpRequestInfo, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.HttpRequestInfo, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Headers": "System.Collections.Generic.IDictionary`2[System.String,System.Collections.Generic.IEnumerable`1[System.String]]", "Verb": "System.String", @@ -24097,7 +24097,7 @@ "Microsoft.Azure.Commands.Profile.Errors.HttpResponseInfo": { "Namespace": "Microsoft.Azure.Commands.Profile.Errors", "Name": "Microsoft.Azure.Commands.Profile.Errors.HttpResponseInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.HttpResponseInfo, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.HttpResponseInfo, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Headers": "System.Collections.Generic.IDictionary`2[System.String,System.Collections.Generic.IEnumerable`1[System.String]]", "ResponseStatusCode": "System.String", diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll.json index 4881206a09b3..453924d83844 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll.json @@ -7781,6 +7781,7 @@ "SigninPolicyName": "System.String", "ProfileEditingPolicyName": "System.String", "PasswordResetPolicyName": "System.String", + "SigninTenant": "System.String", "Id": "System.String", "ResourceGroupName": "System.String", "ServiceName": "System.String", @@ -26656,6 +26657,7 @@ "SigninPolicyName": "System.String", "ProfileEditingPolicyName": "System.String", "PasswordResetPolicyName": "System.String", + "SigninTenant": "System.String", "Id": "System.String", "ResourceGroupName": "System.String", "ServiceName": "System.String", @@ -27004,6 +27006,24 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "SigninTenant", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -27402,6 +27422,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "SigninTenant", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -57484,6 +57528,7 @@ "SigninPolicyName": "System.String", "ProfileEditingPolicyName": "System.String", "PasswordResetPolicyName": "System.String", + "SigninTenant": "System.String", "Id": "System.String", "ResourceGroupName": "System.String", "ServiceName": "System.String", @@ -57705,6 +57750,7 @@ "SigninPolicyName": "System.String", "ProfileEditingPolicyName": "System.String", "PasswordResetPolicyName": "System.String", + "SigninTenant": "System.String", "Id": "System.String", "ResourceGroupName": "System.String", "ServiceName": "System.String", @@ -57896,6 +57942,24 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "SigninTenant", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "PassThru", "AliasList": [], @@ -58312,6 +58376,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "SigninTenant", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "PassThru", @@ -58397,6 +58485,7 @@ "SigninPolicyName": "System.String", "ProfileEditingPolicyName": "System.String", "PasswordResetPolicyName": "System.String", + "SigninTenant": "System.String", "Id": "System.String", "ResourceGroupName": "System.String", "ServiceName": "System.String", @@ -58641,6 +58730,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "SigninTenant", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "PassThru", @@ -58901,6 +59014,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "SigninTenant", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "PassThru", diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.dll.json index 42570a3902e7..787fdba7790e 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.dll.json @@ -14,12 +14,12 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]", "Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity", "Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku", @@ -31,11 +31,13 @@ "AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]", "Capacity": "System.Int32", "EnableClientCertificate": "System.Nullable`1[System.Boolean]", - "OrganizationName": "System.String", - "ResourceGroupName": "System.String", + "CreatedTimeUtc": "System.Nullable`1[System.DateTime]", "PublisherEmail": "System.String", + "ResourceGroupName": "System.String", + "OrganizationName": "System.String", "ScmUrl": "System.String", "ManagementApiUrl": "System.String", + "DeveloperPortalUrl": "System.String", "PortalUrl": "System.String", "RuntimeRegionalUrl": "System.String", "RuntimeUrl": "System.String", @@ -160,12 +162,12 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]", "Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity", "Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku", @@ -177,11 +179,13 @@ "AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]", "Capacity": "System.Int32", "EnableClientCertificate": "System.Nullable`1[System.Boolean]", - "OrganizationName": "System.String", - "ResourceGroupName": "System.String", + "CreatedTimeUtc": "System.Nullable`1[System.DateTime]", "PublisherEmail": "System.String", + "ResourceGroupName": "System.String", + "OrganizationName": "System.String", "ScmUrl": "System.String", "ManagementApiUrl": "System.String", + "DeveloperPortalUrl": "System.String", "PortalUrl": "System.String", "RuntimeRegionalUrl": "System.String", "RuntimeUrl": "System.String", @@ -323,7 +327,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -363,7 +367,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VnetId": "System.Guid", "SubnetName": "System.String", @@ -456,12 +460,12 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]", "Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity", "Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku", @@ -473,11 +477,13 @@ "AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]", "Capacity": "System.Int32", "EnableClientCertificate": "System.Nullable`1[System.Boolean]", - "OrganizationName": "System.String", - "ResourceGroupName": "System.String", + "CreatedTimeUtc": "System.Nullable`1[System.DateTime]", "PublisherEmail": "System.String", + "ResourceGroupName": "System.String", + "OrganizationName": "System.String", "ScmUrl": "System.String", "ManagementApiUrl": "System.String", + "DeveloperPortalUrl": "System.String", "PortalUrl": "System.String", "RuntimeRegionalUrl": "System.String", "RuntimeUrl": "System.String", @@ -631,7 +637,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -683,7 +689,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VnetId": "System.Guid", "SubnetName": "System.String", @@ -794,12 +800,12 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]", "Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity", "Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku", @@ -811,11 +817,13 @@ "AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]", "Capacity": "System.Int32", "EnableClientCertificate": "System.Nullable`1[System.Boolean]", - "OrganizationName": "System.String", - "ResourceGroupName": "System.String", + "CreatedTimeUtc": "System.Nullable`1[System.DateTime]", "PublisherEmail": "System.String", + "ResourceGroupName": "System.String", + "OrganizationName": "System.String", "ScmUrl": "System.String", "ManagementApiUrl": "System.String", + "DeveloperPortalUrl": "System.String", "PortalUrl": "System.String", "RuntimeRegionalUrl": "System.String", "RuntimeUrl": "System.String", @@ -1302,12 +1310,12 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]", "Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity", "Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku", @@ -1319,11 +1327,13 @@ "AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]", "Capacity": "System.Int32", "EnableClientCertificate": "System.Nullable`1[System.Boolean]", - "OrganizationName": "System.String", - "ResourceGroupName": "System.String", + "CreatedTimeUtc": "System.Nullable`1[System.DateTime]", "PublisherEmail": "System.String", + "ResourceGroupName": "System.String", + "OrganizationName": "System.String", "ScmUrl": "System.String", "ManagementApiUrl": "System.String", + "DeveloperPortalUrl": "System.String", "PortalUrl": "System.String", "RuntimeRegionalUrl": "System.String", "RuntimeUrl": "System.String", @@ -1827,7 +1837,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementNetworkStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementNetworkStatus, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementNetworkStatus, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectivityStatus": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementConnectivityStatus[]", "Location": "System.String", @@ -1883,12 +1893,12 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]", "Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity", "Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku", @@ -1900,11 +1910,13 @@ "AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]", "Capacity": "System.Int32", "EnableClientCertificate": "System.Nullable`1[System.Boolean]", - "OrganizationName": "System.String", - "ResourceGroupName": "System.String", + "CreatedTimeUtc": "System.Nullable`1[System.DateTime]", "PublisherEmail": "System.String", + "ResourceGroupName": "System.String", + "OrganizationName": "System.String", "ScmUrl": "System.String", "ManagementApiUrl": "System.String", + "DeveloperPortalUrl": "System.String", "PortalUrl": "System.String", "RuntimeRegionalUrl": "System.String", "RuntimeUrl": "System.String", @@ -2121,12 +2133,12 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]", "Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity", "Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku", @@ -2138,11 +2150,13 @@ "AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]", "Capacity": "System.Int32", "EnableClientCertificate": "System.Nullable`1[System.Boolean]", - "OrganizationName": "System.String", - "ResourceGroupName": "System.String", + "CreatedTimeUtc": "System.Nullable`1[System.DateTime]", "PublisherEmail": "System.String", + "ResourceGroupName": "System.String", + "OrganizationName": "System.String", "ScmUrl": "System.String", "ManagementApiUrl": "System.String", + "DeveloperPortalUrl": "System.String", "PortalUrl": "System.String", "RuntimeRegionalUrl": "System.String", "RuntimeUrl": "System.String", @@ -2551,12 +2565,12 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]", "Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity", "Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku", @@ -2568,11 +2582,13 @@ "AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]", "Capacity": "System.Int32", "EnableClientCertificate": "System.Nullable`1[System.Boolean]", - "OrganizationName": "System.String", - "ResourceGroupName": "System.String", + "CreatedTimeUtc": "System.Nullable`1[System.DateTime]", "PublisherEmail": "System.String", + "ResourceGroupName": "System.String", + "OrganizationName": "System.String", "ScmUrl": "System.String", "ManagementApiUrl": "System.String", + "DeveloperPortalUrl": "System.String", "PortalUrl": "System.String", "RuntimeRegionalUrl": "System.String", "RuntimeUrl": "System.String", @@ -2771,12 +2787,12 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]", "Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity", "Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku", @@ -2788,11 +2804,13 @@ "AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]", "Capacity": "System.Int32", "EnableClientCertificate": "System.Nullable`1[System.Boolean]", - "OrganizationName": "System.String", - "ResourceGroupName": "System.String", + "CreatedTimeUtc": "System.Nullable`1[System.DateTime]", "PublisherEmail": "System.String", + "ResourceGroupName": "System.String", + "OrganizationName": "System.String", "ScmUrl": "System.String", "ManagementApiUrl": "System.String", + "DeveloperPortalUrl": "System.String", "PortalUrl": "System.String", "RuntimeRegionalUrl": "System.String", "RuntimeUrl": "System.String", @@ -3109,12 +3127,12 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]", "Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity", "Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku", @@ -3126,11 +3144,13 @@ "AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]", "Capacity": "System.Int32", "EnableClientCertificate": "System.Nullable`1[System.Boolean]", - "OrganizationName": "System.String", - "ResourceGroupName": "System.String", + "CreatedTimeUtc": "System.Nullable`1[System.DateTime]", "PublisherEmail": "System.String", + "ResourceGroupName": "System.String", + "OrganizationName": "System.String", "ScmUrl": "System.String", "ManagementApiUrl": "System.String", + "DeveloperPortalUrl": "System.String", "PortalUrl": "System.String", "RuntimeRegionalUrl": "System.String", "RuntimeUrl": "System.String", @@ -3345,7 +3365,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -3391,7 +3411,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVpnType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVpnType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVpnType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3498,7 +3518,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VnetId": "System.Guid", "SubnetName": "System.String", @@ -3573,7 +3593,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion", "GenericTypeArguments": [], @@ -3591,7 +3611,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "GenericTypeArguments": [], @@ -3609,7 +3629,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate", "GenericTypeArguments": [], @@ -3627,7 +3647,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendProtocol": "System.Collections.Hashtable", "BackendProtocol": "System.Collections.Hashtable", @@ -3877,7 +3897,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -3935,7 +3955,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVpnType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVpnType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVpnType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4048,7 +4068,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VnetId": "System.Guid", "SubnetName": "System.String", @@ -4135,7 +4155,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion", "GenericTypeArguments": [], @@ -4159,7 +4179,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "GenericTypeArguments": [], @@ -4183,7 +4203,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate", "GenericTypeArguments": [], @@ -4207,7 +4227,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendProtocol": "System.Collections.Hashtable", "BackendProtocol": "System.Collections.Hashtable", @@ -4367,7 +4387,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CertificateInformation": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation", "HostnameType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType", @@ -4445,7 +4465,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4602,7 +4622,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Expiry": "System.DateTime", "Subject": "System.String", @@ -4755,7 +4775,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4864,7 +4884,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Expiry": "System.DateTime", "Subject": "System.String", @@ -5040,7 +5060,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5313,7 +5333,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5637,7 +5657,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku", "VirtualNetwork": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork", @@ -5734,7 +5754,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VnetId": "System.Guid", "SubnetName": "System.String", @@ -5877,7 +5897,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VnetId": "System.Guid", "SubnetName": "System.String", @@ -5988,7 +6008,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendProtocol": "System.Collections.Hashtable", "BackendProtocol": "System.Collections.Hashtable", @@ -6302,7 +6322,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CertificateInformation": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation", "EncodedCertificate": "System.String", @@ -6580,7 +6600,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VnetId": "System.Guid", "SubnetName": "System.String", @@ -7002,12 +7022,12 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]", "Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity", "Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku", @@ -7019,11 +7039,13 @@ "AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]", "Capacity": "System.Int32", "EnableClientCertificate": "System.Nullable`1[System.Boolean]", - "OrganizationName": "System.String", - "ResourceGroupName": "System.String", + "CreatedTimeUtc": "System.Nullable`1[System.DateTime]", "PublisherEmail": "System.String", + "ResourceGroupName": "System.String", + "OrganizationName": "System.String", "ScmUrl": "System.String", "ManagementApiUrl": "System.String", + "DeveloperPortalUrl": "System.String", "PortalUrl": "System.String", "RuntimeRegionalUrl": "System.String", "RuntimeUrl": "System.String", @@ -7148,12 +7170,12 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]", "Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity", "Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku", @@ -7165,11 +7187,13 @@ "AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]", "Capacity": "System.Int32", "EnableClientCertificate": "System.Nullable`1[System.Boolean]", - "OrganizationName": "System.String", - "ResourceGroupName": "System.String", + "CreatedTimeUtc": "System.Nullable`1[System.DateTime]", "PublisherEmail": "System.String", + "ResourceGroupName": "System.String", + "OrganizationName": "System.String", "ScmUrl": "System.String", "ManagementApiUrl": "System.String", + "DeveloperPortalUrl": "System.String", "PortalUrl": "System.String", "RuntimeRegionalUrl": "System.String", "RuntimeUrl": "System.String", @@ -7350,12 +7374,12 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]", "Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity", "Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku", @@ -7367,11 +7391,13 @@ "AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]", "Capacity": "System.Int32", "EnableClientCertificate": "System.Nullable`1[System.Boolean]", - "OrganizationName": "System.String", - "ResourceGroupName": "System.String", + "CreatedTimeUtc": "System.Nullable`1[System.DateTime]", "PublisherEmail": "System.String", + "ResourceGroupName": "System.String", + "OrganizationName": "System.String", "ScmUrl": "System.String", "ManagementApiUrl": "System.String", + "DeveloperPortalUrl": "System.String", "PortalUrl": "System.String", "RuntimeRegionalUrl": "System.String", "RuntimeUrl": "System.String", @@ -7576,12 +7602,12 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]", "Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity", "Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku", @@ -7593,11 +7619,13 @@ "AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]", "Capacity": "System.Int32", "EnableClientCertificate": "System.Nullable`1[System.Boolean]", - "OrganizationName": "System.String", - "ResourceGroupName": "System.String", + "CreatedTimeUtc": "System.Nullable`1[System.DateTime]", "PublisherEmail": "System.String", + "ResourceGroupName": "System.String", + "OrganizationName": "System.String", "ScmUrl": "System.String", "ManagementApiUrl": "System.String", + "DeveloperPortalUrl": "System.String", "PortalUrl": "System.String", "RuntimeRegionalUrl": "System.String", "RuntimeUrl": "System.String", @@ -8084,12 +8112,12 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]", "Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity", "Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku", @@ -8101,11 +8129,13 @@ "AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]", "Capacity": "System.Int32", "EnableClientCertificate": "System.Nullable`1[System.Boolean]", - "OrganizationName": "System.String", - "ResourceGroupName": "System.String", + "CreatedTimeUtc": "System.Nullable`1[System.DateTime]", "PublisherEmail": "System.String", + "ResourceGroupName": "System.String", + "OrganizationName": "System.String", "ScmUrl": "System.String", "ManagementApiUrl": "System.String", + "DeveloperPortalUrl": "System.String", "PortalUrl": "System.String", "RuntimeRegionalUrl": "System.String", "RuntimeUrl": "System.String", @@ -8230,12 +8260,12 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]", "Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity", "Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku", @@ -8247,11 +8277,13 @@ "AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]", "Capacity": "System.Int32", "EnableClientCertificate": "System.Nullable`1[System.Boolean]", - "OrganizationName": "System.String", - "ResourceGroupName": "System.String", + "CreatedTimeUtc": "System.Nullable`1[System.DateTime]", "PublisherEmail": "System.String", + "ResourceGroupName": "System.String", + "OrganizationName": "System.String", "ScmUrl": "System.String", "ManagementApiUrl": "System.String", + "DeveloperPortalUrl": "System.String", "PortalUrl": "System.String", "RuntimeRegionalUrl": "System.String", "RuntimeUrl": "System.String", @@ -8468,12 +8500,12 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]", "Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity", "Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku", @@ -8485,11 +8517,13 @@ "AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]", "Capacity": "System.Int32", "EnableClientCertificate": "System.Nullable`1[System.Boolean]", - "OrganizationName": "System.String", - "ResourceGroupName": "System.String", + "CreatedTimeUtc": "System.Nullable`1[System.DateTime]", "PublisherEmail": "System.String", + "ResourceGroupName": "System.String", + "OrganizationName": "System.String", "ScmUrl": "System.String", "ManagementApiUrl": "System.String", + "DeveloperPortalUrl": "System.String", "PortalUrl": "System.String", "RuntimeRegionalUrl": "System.String", "RuntimeUrl": "System.String", @@ -8742,12 +8776,12 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]", "Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity", "Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku", @@ -8759,11 +8793,13 @@ "AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]", "Capacity": "System.Int32", "EnableClientCertificate": "System.Nullable`1[System.Boolean]", - "OrganizationName": "System.String", - "ResourceGroupName": "System.String", + "CreatedTimeUtc": "System.Nullable`1[System.DateTime]", "PublisherEmail": "System.String", + "ResourceGroupName": "System.String", + "OrganizationName": "System.String", "ScmUrl": "System.String", "ManagementApiUrl": "System.String", + "DeveloperPortalUrl": "System.String", "PortalUrl": "System.String", "RuntimeRegionalUrl": "System.String", "RuntimeUrl": "System.String", @@ -8888,12 +8924,12 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]", "Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity", "Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku", @@ -8905,11 +8941,13 @@ "AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]", "Capacity": "System.Int32", "EnableClientCertificate": "System.Nullable`1[System.Boolean]", - "OrganizationName": "System.String", - "ResourceGroupName": "System.String", + "CreatedTimeUtc": "System.Nullable`1[System.DateTime]", "PublisherEmail": "System.String", + "ResourceGroupName": "System.String", + "OrganizationName": "System.String", "ScmUrl": "System.String", "ManagementApiUrl": "System.String", + "DeveloperPortalUrl": "System.String", "PortalUrl": "System.String", "RuntimeRegionalUrl": "System.String", "RuntimeUrl": "System.String", @@ -9051,7 +9089,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9172,7 +9210,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VnetId": "System.Guid", "SubnetName": "System.String", @@ -9265,12 +9303,12 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "ScmCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", + "DeveloperPortalHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "ProxyCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]", "Identity": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity", "Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku", @@ -9282,11 +9320,13 @@ "AdditionalRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]", "Capacity": "System.Int32", "EnableClientCertificate": "System.Nullable`1[System.Boolean]", - "OrganizationName": "System.String", - "ResourceGroupName": "System.String", + "CreatedTimeUtc": "System.Nullable`1[System.DateTime]", "PublisherEmail": "System.String", + "ResourceGroupName": "System.String", + "OrganizationName": "System.String", "ScmUrl": "System.String", "ManagementApiUrl": "System.String", + "DeveloperPortalUrl": "System.String", "PortalUrl": "System.String", "RuntimeRegionalUrl": "System.String", "RuntimeUrl": "System.String", @@ -9440,7 +9480,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9573,7 +9613,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VnetId": "System.Guid", "SubnetName": "System.String", @@ -9815,7 +9855,7 @@ "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CertificateInformation": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation", "HostnameType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType", @@ -9866,7 +9906,7 @@ "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Expiry": "System.DateTime", "Subject": "System.String", @@ -9932,7 +9972,7 @@ "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10049,7 +10089,7 @@ "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration", "GenericTypeArguments": [], @@ -10059,7 +10099,7 @@ "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentityType", "TenantId": "System.String", @@ -10105,7 +10145,7 @@ "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentityType": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentityType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentityType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10200,7 +10240,7 @@ "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10295,7 +10335,7 @@ "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendProtocol": "System.Collections.Hashtable", "BackendProtocol": "System.Collections.Hashtable", @@ -10352,7 +10392,7 @@ "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate[]": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate", "GenericTypeArguments": [], @@ -10362,7 +10402,7 @@ "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CertificateInformation": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation", "EncodedCertificate": "System.String", @@ -10409,7 +10449,7 @@ "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VnetId": "System.Guid", "SubnetName": "System.String", @@ -10465,7 +10505,7 @@ "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVpnType": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVpnType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVpnType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVpnType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10573,7 +10613,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -10585,7 +10625,7 @@ "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku", "VirtualNetwork": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork", @@ -10642,6 +10682,18 @@ "Methods": [], "Constructors": [] }, + "System.Nullable`1[System.DateTime]": { + "Namespace": "System", + "Name": "System.Nullable`1[System.DateTime]", + "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.DateTime" + ], + "Methods": [], + "Constructors": [] + }, "System.Void": { "Namespace": "System", "Name": "System.Void", @@ -10842,7 +10894,7 @@ "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementConnectivityStatus[]": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementConnectivityStatus[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementConnectivityStatus[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementConnectivityStatus[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementConnectivityStatus", "GenericTypeArguments": [], @@ -10852,7 +10904,7 @@ "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementConnectivityStatus": { "Namespace": "Microsoft.Azure.Commands.ApiManagement.Models", "Name": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementConnectivityStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementConnectivityStatus, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementConnectivityStatus, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LastUpdated": "System.DateTime", "LastStatusChange": "System.DateTime", diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore.dll.json index db75affbdc0b..bddb7af016ec 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore.dll.json @@ -14,7 +14,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreFirewallRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "StartIpAddress": "System.String", @@ -380,7 +380,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreTrustedIdProvider", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreTrustedIdProvider, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreTrustedIdProvider, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "IdProvider": "System.String" @@ -703,7 +703,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreVirtualNetworkRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IgnoreMissingVnetServiceEndpoint": "System.Nullable`1[System.Boolean]", "ResourceGroupName": "System.String", @@ -1189,7 +1189,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.PSDataLakeStoreAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.PSDataLakeStoreAccount, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.PSDataLakeStoreAccount, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EncryptionConfig": "Microsoft.Azure.Management.DataLake.Store.Models.EncryptionConfig", "Identity": "Microsoft.Azure.Management.DataLake.Store.Models.EncryptionIdentity", @@ -1567,7 +1567,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreFirewallRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "StartIpAddress": "System.String", @@ -1849,7 +1849,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreTrustedIdProvider", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreTrustedIdProvider, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreTrustedIdProvider, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "IdProvider": "System.String" @@ -2130,7 +2130,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreVirtualNetworkRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IgnoreMissingVnetServiceEndpoint": "System.Nullable`1[System.Boolean]", "ResourceGroupName": "System.String", @@ -2373,7 +2373,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.PSDataLakeStoreAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.PSDataLakeStoreAccount, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.PSDataLakeStoreAccount, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EncryptionConfig": "Microsoft.Azure.Management.DataLake.Store.Models.EncryptionConfig", "Identity": "Microsoft.Azure.Management.DataLake.Store.Models.EncryptionIdentity", @@ -4341,7 +4341,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.PSDataLakeStoreAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.PSDataLakeStoreAccount, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.PSDataLakeStoreAccount, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EncryptionConfig": "Microsoft.Azure.Management.DataLake.Store.Models.EncryptionConfig", "Identity": "Microsoft.Azure.Management.DataLake.Store.Models.EncryptionIdentity", @@ -4913,7 +4913,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreFirewallRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "StartIpAddress": "System.String", @@ -5279,7 +5279,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreTrustedIdProvider", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreTrustedIdProvider, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreTrustedIdProvider, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "IdProvider": "System.String" @@ -5602,7 +5602,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreVirtualNetworkRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IgnoreMissingVnetServiceEndpoint": "System.Nullable`1[System.Boolean]", "ResourceGroupName": "System.String", @@ -6121,7 +6121,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -6285,7 +6285,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -6494,7 +6494,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -6784,7 +6784,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -7091,7 +7091,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -7446,7 +7446,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -7777,7 +7777,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -8083,7 +8083,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -8236,7 +8236,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.LogLevel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.LogLevel, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.LogLevel, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8422,7 +8422,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -8681,7 +8681,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -8870,7 +8870,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.LogLevel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.LogLevel, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.LogLevel, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9100,7 +9100,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItem, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItem, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LastWriteTime": "System.DateTimeOffset", "LastAccessTime": "System.DateTimeOffset", @@ -9194,7 +9194,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -9322,7 +9322,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -9444,7 +9444,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreChildItemSummary", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreChildItemSummary, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreChildItemSummary, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DirectoryCount": "System.Int64", "FileCount": "System.Int64", @@ -9525,7 +9525,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -9671,7 +9671,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -9817,7 +9817,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreDeletedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreDeletedItem, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreDeletedItem, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "System.Nullable`1[Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+FileType]", "CreationTime": "System.Nullable`1[System.DateTime]", @@ -10186,7 +10186,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItem, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItem, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LastWriteTime": "System.DateTimeOffset", "LastAccessTime": "System.DateTimeOffset", @@ -10280,7 +10280,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -10408,7 +10408,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -10530,7 +10530,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType", "Scope": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+ScopeType", @@ -10634,7 +10634,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -10762,7 +10762,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -10938,7 +10938,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -11174,7 +11174,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -11409,7 +11409,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -11596,7 +11596,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -11849,7 +11849,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -11912,7 +11912,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Owner", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Owner, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Owner, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12080,7 +12080,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -12149,7 +12149,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Owner", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Owner, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Owner, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12350,7 +12350,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -12478,7 +12478,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -12657,7 +12657,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -12810,7 +12810,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.LogLevel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.LogLevel, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.LogLevel, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13020,7 +13020,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -13303,7 +13303,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -13492,7 +13492,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.LogLevel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.LogLevel, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.LogLevel, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13763,7 +13763,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", "GenericTypeArguments": [], @@ -13781,7 +13781,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -13929,7 +13929,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", "GenericTypeArguments": [], @@ -13953,7 +13953,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -14138,7 +14138,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -14201,7 +14201,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -14347,7 +14347,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -14416,7 +14416,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -14601,7 +14601,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -14801,7 +14801,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -15058,7 +15058,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", "GenericTypeArguments": [], @@ -15195,7 +15195,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", "GenericTypeArguments": [], @@ -15383,7 +15383,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -15565,7 +15565,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -15798,7 +15798,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -15861,7 +15861,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce", "GenericTypeArguments": [], @@ -15879,7 +15879,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16155,7 +16155,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -16224,7 +16224,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce", "GenericTypeArguments": [], @@ -16414,7 +16414,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -16483,7 +16483,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16929,7 +16929,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreDeletedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreDeletedItem, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreDeletedItem, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "System.Nullable`1[Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+FileType]", "CreationTime": "System.Nullable`1[System.DateTime]", @@ -17064,7 +17064,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreDeletedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreDeletedItem, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreDeletedItem, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "System.Nullable`1[Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+FileType]", "CreationTime": "System.Nullable`1[System.DateTime]", @@ -17457,7 +17457,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreDeletedItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreDeletedItem, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreDeletedItem, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "System.Nullable`1[Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+FileType]", "CreationTime": "System.Nullable`1[System.DateTime]", @@ -17692,7 +17692,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType", "Scope": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+ScopeType", @@ -17796,7 +17796,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -17859,7 +17859,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce", "GenericTypeArguments": [], @@ -18014,7 +18014,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -18083,7 +18083,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce", "GenericTypeArguments": [], @@ -18256,7 +18256,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType", "Scope": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+ScopeType", @@ -18360,7 +18360,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -18423,7 +18423,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce", "GenericTypeArguments": [], @@ -18441,7 +18441,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18562,7 +18562,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Permission", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Permission, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Permission, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18820,7 +18820,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -18889,7 +18889,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce", "GenericTypeArguments": [], @@ -19079,7 +19079,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -19148,7 +19148,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19281,7 +19281,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Permission", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Permission, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Permission, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19703,7 +19703,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItem, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItem, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LastWriteTime": "System.DateTimeOffset", "LastAccessTime": "System.DateTimeOffset", @@ -19797,7 +19797,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -19878,7 +19878,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+PathRelativeExpiryOptions", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+PathRelativeExpiryOptions, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+PathRelativeExpiryOptions, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20064,7 +20064,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -20227,7 +20227,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -20296,7 +20296,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+PathRelativeExpiryOptions", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+PathRelativeExpiryOptions, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+PathRelativeExpiryOptions, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20565,7 +20565,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -20628,7 +20628,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Owner", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Owner, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Owner, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20832,7 +20832,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -20901,7 +20901,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Owner", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Owner, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Owner, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21150,7 +21150,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -21296,7 +21296,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -21481,7 +21481,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -21544,7 +21544,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+PathType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+PathType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+PathType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21712,7 +21712,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -21781,7 +21781,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+PathType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+PathType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+PathType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23732,7 +23732,7 @@ "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TransformedPath": "System.String", "OriginalPath": "System.String" @@ -23797,7 +23797,7 @@ "System.Nullable`1[Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+FileType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+FileType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+FileType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+FileType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -23809,7 +23809,7 @@ "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+FileType": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+FileType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+FileType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+FileType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23928,7 +23928,7 @@ "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24023,7 +24023,7 @@ "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+ScopeType": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+ScopeType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+ScopeType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+ScopeType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24118,7 +24118,7 @@ "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce": { "Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models", "Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.6.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType", "Scope": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+ScopeType", diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.IotHub.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.IotHub.dll.json index 98649470f748..7282b620fcaf 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.IotHub.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.IotHub.dll.json @@ -14,7 +14,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties", "ResourceGroupName": "System.String", @@ -73,7 +73,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties", "ResourceGroupName": "System.String", @@ -278,7 +278,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties", "ResourceGroupName": "System.String", @@ -1026,7 +1026,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Rights": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights", "KeyName": "System.String", @@ -1190,7 +1190,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1428,7 +1428,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1701,7 +1701,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1902,7 +1902,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2062,7 +2062,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism", "Capabilities": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceCapabilities", @@ -2127,7 +2127,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -2259,7 +2259,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2362,7 +2362,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2495,6 +2495,60 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "Children", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ParentDeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Force", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -2540,7 +2594,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -2623,6 +2677,54 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "Children", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ParentDeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "AuthMethod", @@ -2630,7 +2732,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2739,7 +2841,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2889,6 +2991,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "Force", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -3005,6 +3131,54 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "Children", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ParentDeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "AuthMethod", @@ -3012,7 +3186,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3121,7 +3295,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3271,6 +3445,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "Force", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -3363,6 +3561,54 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "Children", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ParentDeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "AuthMethod", @@ -3370,7 +3616,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3479,7 +3725,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3629,6 +3875,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "Force", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -3680,7 +3950,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3789,7 +4059,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3939,6 +4209,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "Force", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -3984,11 +4278,11 @@ "AliasList": [] }, { - "VerbName": "Get", - "NounName": "AzIotHubDevice", - "Name": "Get-AzIotHubDevice", - "ClassName": "Microsoft.Azure.Commands.Management.IotHub.GetAzIotHubDevice", - "SupportsShouldProcess": false, + "VerbName": "Add", + "NounName": "AzIotHubDeviceChildren", + "Name": "Add-AzIotHubDeviceChildren", + "ClassName": "Microsoft.Azure.Commands.Management.IotHub.AddAzIotHubDeviceChildren", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "ResourceSet", @@ -3996,22 +4290,11 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", - "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceChildren", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceChildren, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism", - "Capabilities": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceCapabilities", - "ConnectionState": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState", - "Status": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus", - "ConnectionStateUpdatedTime": "System.DateTime", - "StatusUpdatedTime": "System.DateTime", - "LastActivityTime": "System.DateTime", - "CloudToDeviceMessageCount": "System.Int32", - "Id": "System.String", - "GenerationId": "System.String", - "ETag": "System.String", - "StatusReason": "System.String", - "Scope": "System.String" + "ChildrenDeviceId": "System.Collections.Generic.IList`1[System.String]", + "DeviceId": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -4053,21 +4336,6 @@ "ParameterSets": [ "__AllParameterSets" ] - }, - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", - "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevices[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevices[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", - "Properties": {}, - "ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevices", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ParameterSets": [ - "__AllParameterSets" - ] } ], "Parameters": [ @@ -4077,7 +4345,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -4203,6 +4471,42 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, + { + "Name": "Children", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Force", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -4248,7 +4552,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -4326,6 +4630,54 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Children", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -4442,6 +4794,54 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Children", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 3, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -4534,6 +4934,54 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Children", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -4583,6 +5031,30 @@ { "Name": "__AllParameterSets", "Parameters": [ + { + "ParameterMetadata": { + "Name": "Force", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -4625,52 +5097,39 @@ ] } ], - "AliasList": [] + "AliasList": [ + "Add-AzIotHubDCL" + ] }, { - "VerbName": "Remove", + "VerbName": "Get", "NounName": "AzIotHubDevice", - "Name": "Remove-AzIotHubDevice", - "ClassName": "Microsoft.Azure.Commands.Management.IotHub.RemoveAzIotHubDevice", - "SupportsShouldProcess": true, + "Name": "Get-AzIotHubDevice", + "ClassName": "Microsoft.Azure.Commands.Management.IotHub.GetAzIotHubDevice", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "ResourceSet", "OutputTypes": [ { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "InputObject", - "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", - "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", - "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", - "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism", + "Capabilities": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceCapabilities", + "ConnectionState": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState", + "Status": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus", + "ConnectionStateUpdatedTime": "System.DateTime", + "StatusUpdatedTime": "System.DateTime", + "LastActivityTime": "System.DateTime", + "CloudToDeviceMessageCount": "System.Int32", "Id": "System.String", - "Name": "System.String", - "Type": "System.String", - "Location": "System.String", - "Subscriptionid": "System.String", - "Resourcegroup": "System.String" + "GenerationId": "System.String", + "ETag": "System.String", + "StatusReason": "System.String", + "Scope": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -4709,31 +5168,89 @@ } ] }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ParameterSets": [ + "__AllParameterSets" + ] }, { - "Name": "ResourceGroupName", - "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevices[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevices[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, - "ElementType": null, + "ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevices", "GenericTypeArguments": [], "Methods": [], "Constructors": [] }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", + "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Location": "System.String", + "Subscriptionid": "System.String", + "Resourcegroup": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceId", + "Name": "ResourceGroupName", "AliasList": [], "Type": { "Namespace": "System", @@ -4751,7 +5268,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "IotHubName", + "Name": "ResourceId", "AliasList": [], "Type": { "Namespace": "System", @@ -4769,7 +5286,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "DeviceId", + "Name": "IotHubName", "AliasList": [], "Type": { "Namespace": "System", @@ -4787,12 +5304,12 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "PassThru", + "Name": "DeviceId", "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4802,7 +5319,7 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { "Name": "DefaultProfile", @@ -4849,7 +5366,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -4932,30 +5449,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "PassThru", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -5072,30 +5565,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "PassThru", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -5188,30 +5657,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "PassThru", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -5256,30 +5701,6 @@ { "Name": "__AllParameterSets", "Parameters": [ - { - "ParameterMetadata": { - "Name": "PassThru", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -5325,95 +5746,99 @@ "AliasList": [] }, { - "VerbName": "Set", - "NounName": "AzIotHubDevice", - "Name": "Set-AzIotHubDevice", - "ClassName": "Microsoft.Azure.Commands.Management.IotHub.SetAzIotHubDevice", - "SupportsShouldProcess": true, + "VerbName": "Get", + "NounName": "AzIotHubDeviceChildren", + "Name": "Get-AzIotHubDeviceChildren", + "ClassName": "Microsoft.Azure.Commands.Management.IotHub.GetAzIotHubDeviceChildren", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ResourceSetForStatus", + "DefaultParameterSetName": "ResourceSet", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", - "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceChildren", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceChildren, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism", - "Capabilities": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceCapabilities", - "ConnectionState": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState", - "Status": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus", - "ConnectionStateUpdatedTime": "System.DateTime", - "StatusUpdatedTime": "System.DateTime", - "LastActivityTime": "System.DateTime", - "CloudToDeviceMessageCount": "System.Int32", + "ChildrenDeviceId": "System.Collections.Generic.IList`1[System.String]", + "DeviceId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + }, + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevicesChildren[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevicesChildren[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevicesChildren", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", + "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Id": "System.String", - "GenerationId": "System.String", - "ETag": "System.String", - "StatusReason": "System.String", - "Scope": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [ - { - "Name": "", - "ReturnType": null, - "Parameters": [] - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "InputObject", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", - "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", - "Properties": { - "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", - "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", - "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "Id": "System.String", - "Name": "System.String", - "Type": "System.String", - "Location": "System.String", - "Subscriptionid": "System.String", - "Resourcegroup": "System.String" + "Name": "System.String", + "Type": "System.String", + "Location": "System.String", + "Subscriptionid": "System.String", + "Resourcegroup": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -5529,248 +5954,6 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - { - "Name": "AuthMethod", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", - "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "CompareTo", - "Parameters": [ - { - "Name": "target", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "HasFlag", - "Parameters": [ - { - "Name": "flag", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetTypeCode", - "Parameters": [], - "ReturnType": "System.TypeCode" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Status", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", - "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "CompareTo", - "Parameters": [ - { - "Name": "target", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "HasFlag", - "Parameters": [ - { - "Name": "flag", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetTypeCode", - "Parameters": [], - "ReturnType": "System.TypeCode" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "StatusReason", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "EdgeEnabled", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, { "Name": "DefaultProfile", "AliasList": [ @@ -5807,7 +5990,7 @@ ], "ParameterSets": [ { - "Name": "InputObjectSetForAuth", + "Name": "InputObjectSet", "Parameters": [ { "ParameterMetadata": { @@ -5816,7 +5999,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -5894,115 +6077,6 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, - "Position": 1, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AuthMethod", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", - "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "CompareTo", - "Parameters": [ - { - "Name": "target", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "HasFlag", - "Parameters": [ - { - "Name": "flag", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetTypeCode", - "Parameters": [], - "ReturnType": "System.TypeCode" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -6050,63 +6124,21 @@ ] }, { - "Name": "InputObjectSetForStatus", + "Name": "ResourceSet", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", + "Name": "ResourceGroupName", "AliasList": [], "Type": { - "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", - "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", - "Properties": { - "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", - "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", - "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "Id": "System.String", - "Name": "System.String", - "Type": "System.String", - "Location": "System.String", - "Subscriptionid": "System.String", - "Resourcegroup": "System.String" - }, + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [ - { - "Name": "", - "ReturnType": null, - "Parameters": [] - } - ] + "Methods": [], + "Constructors": [] }, "ValidateSet": [], "ValidateRangeMin": null, @@ -6115,12 +6147,12 @@ }, "Mandatory": true, "Position": 0, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DeviceId", + "Name": "IotHubName", "AliasList": [], "Type": { "Namespace": "System", @@ -6144,18 +6176,9502 @@ }, { "ParameterMetadata": { - "Name": "Status", + "Name": "DeviceId", "AliasList": [], "Type": { - "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", - "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], "Methods": [ { - "Name": "Equals", + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ResourceIdSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [ + "Get-AzIotHubDCL" + ] + }, + { + "VerbName": "Get", + "NounName": "AzIotHubDeviceConnectionString", + "Name": "Get-AzIotHubDeviceConnectionString", + "ClassName": "Microsoft.Azure.Commands.Management.IotHub.GetAzIotHubDeviceConnectionString", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ResourceSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionString", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionString, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "DeviceId": "System.String", + "ConnectionString": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", + "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Location": "System.String", + "Subscriptionid": "System.String", + "Resourcegroup": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "IotHubName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "KeyType", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "InputObjectSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", + "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Location": "System.String", + "Subscriptionid": "System.String", + "Resourcegroup": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "KeyType", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ResourceSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IotHubName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "KeyType", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ResourceIdSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "KeyType", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [ + "Get-AzIotHubDCS" + ] + }, + { + "VerbName": "Get", + "NounName": "AzIotHubDeviceParent", + "Name": "Get-AzIotHubDeviceParent", + "ClassName": "Microsoft.Azure.Commands.Management.IotHub.GetAzIotHubDeviceParent", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ResourceSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism", + "Capabilities": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceCapabilities", + "ConnectionState": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState", + "Status": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus", + "ConnectionStateUpdatedTime": "System.DateTime", + "StatusUpdatedTime": "System.DateTime", + "LastActivityTime": "System.DateTime", + "CloudToDeviceMessageCount": "System.Int32", + "Id": "System.String", + "GenerationId": "System.String", + "ETag": "System.String", + "StatusReason": "System.String", + "Scope": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", + "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Location": "System.String", + "Subscriptionid": "System.String", + "Resourcegroup": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "IotHubName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "InputObjectSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", + "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Location": "System.String", + "Subscriptionid": "System.String", + "Resourcegroup": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ResourceSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IotHubName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ResourceIdSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Remove", + "NounName": "AzIotHubDevice", + "Name": "Remove-AzIotHubDevice", + "ClassName": "Microsoft.Azure.Commands.Management.IotHub.RemoveAzIotHubDevice", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ResourceSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", + "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Location": "System.String", + "Subscriptionid": "System.String", + "Resourcegroup": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "IotHubName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "InputObjectSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", + "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Location": "System.String", + "Subscriptionid": "System.String", + "Resourcegroup": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ResourceSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IotHubName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ResourceIdSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Remove", + "NounName": "AzIotHubDeviceChildren", + "Name": "Remove-AzIotHubDeviceChildren", + "ClassName": "Microsoft.Azure.Commands.Management.IotHub.RemoveAzIotHubDeviceChildren", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ResourceSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", + "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Location": "System.String", + "Subscriptionid": "System.String", + "Resourcegroup": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "IotHubName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Children", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "InputObjectSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", + "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Location": "System.String", + "Subscriptionid": "System.String", + "Resourcegroup": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Children", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ResourceSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IotHubName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Children", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ResourceIdSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Children", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [ + "Remove-AzIotHubDCL" + ] + }, + { + "VerbName": "Set", + "NounName": "AzIotHubDevice", + "Name": "Set-AzIotHubDevice", + "ClassName": "Microsoft.Azure.Commands.Management.IotHub.SetAzIotHubDevice", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ResourceSetForStatus", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism", + "Capabilities": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceCapabilities", + "ConnectionState": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState", + "Status": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus", + "ConnectionStateUpdatedTime": "System.DateTime", + "StatusUpdatedTime": "System.DateTime", + "LastActivityTime": "System.DateTime", + "CloudToDeviceMessageCount": "System.Int32", + "Id": "System.String", + "GenerationId": "System.String", + "ETag": "System.String", + "StatusReason": "System.String", + "Scope": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", + "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Location": "System.String", + "Subscriptionid": "System.String", + "Resourcegroup": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "IotHubName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "AuthMethod", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Status", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "StatusReason", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EdgeEnabled", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "InputObjectSetForAuth", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", + "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Location": "System.String", + "Subscriptionid": "System.String", + "Resourcegroup": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AuthMethod", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "InputObjectSetForStatus", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", + "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Location": "System.String", + "Subscriptionid": "System.String", + "Resourcegroup": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Status", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "StatusReason", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "InputObjectSetForEdgeEnabled", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", + "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Location": "System.String", + "Subscriptionid": "System.String", + "Resourcegroup": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EdgeEnabled", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ResourceSetForAuth", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IotHubName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AuthMethod", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ResourceSetForStatus", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IotHubName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Status", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "StatusReason", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ResourceSetForEdgeEnabled", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IotHubName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EdgeEnabled", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ResourceIdSetForAuth", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AuthMethod", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ResourceIdSetForStatus", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Status", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "StatusReason", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ResourceIdSetForEdgeEnabled", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EdgeEnabled", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Set", + "NounName": "AzIotHubDeviceParent", + "Name": "Set-AzIotHubDeviceParent", + "ClassName": "Microsoft.Azure.Commands.Management.IotHub.SetAzIotHubDeviceParent", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ResourceSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism", + "Capabilities": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceCapabilities", + "ConnectionState": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState", + "Status": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus", + "ConnectionStateUpdatedTime": "System.DateTime", + "StatusUpdatedTime": "System.DateTime", + "LastActivityTime": "System.DateTime", + "CloudToDeviceMessageCount": "System.Int32", + "Id": "System.String", + "GenerationId": "System.String", + "ETag": "System.String", + "StatusReason": "System.String", + "Scope": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", + "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Location": "System.String", + "Subscriptionid": "System.String", + "Resourcegroup": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "IotHubName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ParentDeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Force", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "InputObjectSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", + "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Location": "System.String", + "Subscriptionid": "System.String", + "Resourcegroup": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ParentDeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ResourceSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IotHubName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ParentDeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 3, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ResourceIdSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ParentDeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Force", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Add", + "NounName": "AzIotHubModule", + "Name": "Add-AzIotHubModule", + "ClassName": "Microsoft.Azure.Commands.Management.IotHub.AddAzIotHubModule", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ResourceSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism", + "ConnectionState": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState", + "ConnectionStateUpdatedTime": "System.DateTime", + "LastActivityTime": "System.DateTime", + "CloudToDeviceMessageCount": "System.Int32", + "Id": "System.String", + "DeviceId": "System.String", + "GenerationId": "System.String", + "ETag": "System.String", + "ManagedBy": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", + "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Location": "System.String", + "Subscriptionid": "System.String", + "Resourcegroup": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "IotHubName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ModuleId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "AuthMethod", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "InputObjectSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", + "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Location": "System.String", + "Subscriptionid": "System.String", + "Resourcegroup": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ModuleId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AuthMethod", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ResourceSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IotHubName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ModuleId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 3, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AuthMethod", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ResourceIdSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ModuleId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AuthMethod", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "AuthMethod", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Get", + "NounName": "AzIotHubModule", + "Name": "Get-AzIotHubModule", + "ClassName": "Microsoft.Azure.Commands.Management.IotHub.GetAzIotHubModule", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ResourceSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism", + "ConnectionState": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState", + "ConnectionStateUpdatedTime": "System.DateTime", + "LastActivityTime": "System.DateTime", + "CloudToDeviceMessageCount": "System.Int32", + "Id": "System.String", + "DeviceId": "System.String", + "GenerationId": "System.String", + "ETag": "System.String", + "ManagedBy": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + }, + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModules[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModules[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModules", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", + "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Location": "System.String", + "Subscriptionid": "System.String", + "Resourcegroup": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "IotHubName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ModuleId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "InputObjectSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", + "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Location": "System.String", + "Subscriptionid": "System.String", + "Resourcegroup": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ModuleId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ResourceSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IotHubName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ModuleId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ResourceIdSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ModuleId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Get", + "NounName": "AzIotHubModuleConnectionString", + "Name": "Get-AzIotHubModuleConnectionString", + "ClassName": "Microsoft.Azure.Commands.Management.IotHub.GetAzIotHubModuleConnectionString", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ResourceSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModuleConnectionString", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModuleConnectionString, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ModuleId": "System.String", + "ConnectionString": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", + "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Location": "System.String", + "Subscriptionid": "System.String", + "Resourcegroup": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "IotHubName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ModuleId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "KeyType", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "InputObjectSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", + "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Location": "System.String", + "Subscriptionid": "System.String", + "Resourcegroup": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ModuleId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "KeyType", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ResourceSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IotHubName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ModuleId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "KeyType", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ResourceIdSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ModuleId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "KeyType", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", "Parameters": [ { "Name": "obj", @@ -6175,68 +15691,732 @@ "ReturnType": "System.String" }, { - "Name": "ToString", + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [ + "Get-AzIotHubMCS" + ] + }, + { + "VerbName": "Remove", + "NounName": "AzIotHubModule", + "Name": "Remove-AzIotHubModule", + "ClassName": "Microsoft.Azure.Commands.Management.IotHub.RemoveAzIotHubModule", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ResourceSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", + "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Location": "System.String", + "Subscriptionid": "System.String", + "Resourcegroup": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "IotHubName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ModuleId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "InputObjectSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", + "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Location": "System.String", + "Subscriptionid": "System.String", + "Resourcegroup": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", "Parameters": [ { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "provider", + "Name": "obj", "Type": "System.Reflection.RuntimeParameterInfo" } ], - "ReturnType": "System.String" + "ReturnType": "System.Boolean" }, { - "Name": "CompareTo", - "Parameters": [ - { - "Name": "target", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], + "Name": "GetHashCode", + "Parameters": [], "ReturnType": "System.Int32" }, { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ { - "Name": "HasFlag", - "Parameters": [ - { - "Name": "flag", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ModuleId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ { - "Name": "GetTypeCode", + "Name": "Clear", "Parameters": [], - "ReturnType": "System.TypeCode" - }, + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ResourceSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IotHubName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ModuleId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ { - "Name": "GetType", + "Name": "Clear", "Parameters": [], - "ReturnType": "System.Type" + "ReturnType": "System.Void" } ], "Constructors": [] @@ -6244,16 +16424,69 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ResourceIdSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "StatusReason", + "Name": "ModuleId", "AliasList": [], "Type": { "Namespace": "System", @@ -6268,6 +16501,98 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -6315,9 +16640,370 @@ "ValueFromPipelineByPropertyName": false } ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Set", + "NounName": "AzIotHubModule", + "Name": "Set-AzIotHubModule", + "ClassName": "Microsoft.Azure.Commands.Management.IotHub.SetAzIotHubModule", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ResourceSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism", + "ConnectionState": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState", + "ConnectionStateUpdatedTime": "System.DateTime", + "LastActivityTime": "System.DateTime", + "CloudToDeviceMessageCount": "System.Int32", + "Id": "System.String", + "DeviceId": "System.String", + "GenerationId": "System.String", + "ETag": "System.String", + "ManagedBy": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", + "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Location": "System.String", + "Subscriptionid": "System.String", + "Resourcegroup": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "IotHubName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DeviceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ModuleId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "AuthMethod", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true }, { - "Name": "InputObjectSetForEdgeEnabled", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "InputObjectSet", "Parameters": [ { "ParameterMetadata": { @@ -6326,7 +17012,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -6411,123 +17097,7 @@ }, { "ParameterMetadata": { - "Name": "EdgeEnabled", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Clear", - "Parameters": [], - "ReturnType": "System.Void" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ResourceSetForAuth", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": 0, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "IotHubName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": 1, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DeviceId", + "Name": "ModuleId", "AliasList": [], "Type": { "Namespace": "System", @@ -6556,232 +17126,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "CompareTo", - "Parameters": [ - { - "Name": "target", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "HasFlag", - "Parameters": [ - { - "Name": "flag", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetTypeCode", - "Parameters": [], - "ReturnType": "System.TypeCode" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Clear", - "Parameters": [], - "ReturnType": "System.Void" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ResourceSetForStatus", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": 0, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "IotHubName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": 1, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DeviceId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": 2, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Status", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", - "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6883,30 +17228,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "StatusReason", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -6949,7 +17270,7 @@ ] }, { - "Name": "ResourceSetForEdgeEnabled", + "Name": "ResourceSet", "Parameters": [ { "ParameterMetadata": { @@ -7025,99 +17346,7 @@ }, { "ParameterMetadata": { - "Name": "EdgeEnabled", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Clear", - "Parameters": [], - "ReturnType": "System.Void" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ResourceIdSetForAuth", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ResourceId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": 0, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "DeviceId", + "Name": "ModuleId", "AliasList": [], "Type": { "Namespace": "System", @@ -7135,7 +17364,7 @@ "ValidateNotNullOrEmpty": true }, "Mandatory": true, - "Position": 1, + "Position": 3, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, @@ -7146,7 +17375,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7290,7 +17519,7 @@ ] }, { - "Name": "ResourceIdSetForStatus", + "Name": "ResourceIdSet", "Parameters": [ { "ParameterMetadata": { @@ -7342,12 +17571,36 @@ }, { "ParameterMetadata": { - "Name": "Status", + "Name": "ModuleId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AuthMethod", "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", - "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7449,146 +17702,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "StatusReason", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Clear", - "Parameters": [], - "ReturnType": "System.Void" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ResourceIdSetForEdgeEnabled", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ResourceId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": 0, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "DeviceId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": 1, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EdgeEnabled", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -7691,7 +17804,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubConsumerGroupInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubConsumerGroupInfo, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubConsumerGroupInfo, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Id": "System.String", @@ -7924,7 +18037,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -8271,7 +18384,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties", "ResourceGroupName": "System.String", @@ -8330,7 +18443,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -8501,7 +18614,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -8918,7 +19031,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateWithNonceDescription", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateWithNonceDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateWithNonceDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificatePropertiesWithNonce", "ResourceGroupName": "System.String", @@ -8977,7 +19090,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties", "ResourceGroupName": "System.String", @@ -9164,7 +19277,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties", "ResourceGroupName": "System.String", @@ -9557,7 +19670,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Rights": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights", "KeyName": "System.String", @@ -9829,7 +19942,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobResponse, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobResponse, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Status": "System.Nullable`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobStatus]", "StartTimeUtc": "System.Nullable`1[System.DateTime]", @@ -10104,7 +20217,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Rights": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights", "KeyName": "System.String", @@ -10530,7 +20643,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubQuotaMetric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubQuotaMetric, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubQuotaMetric, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "CurrentValue": "System.String", @@ -10759,7 +20872,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubRegistryStatistics", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubRegistryStatistics, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubRegistryStatistics, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TotalDeviceCount": "System.Nullable`1[System.Int64]", "EnabledDeviceCount": "System.Nullable`1[System.Int64]", @@ -10988,7 +21101,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuDescription", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Capacity": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubCapacity", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -11236,7 +21349,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -11425,7 +21538,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -11938,7 +22051,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -12035,7 +22148,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12174,7 +22287,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubInputProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubInputProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubInputProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Features": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCapabilities", "CloudToDevice": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceProperties", @@ -12321,7 +22434,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12478,7 +22591,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubInputProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubInputProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubInputProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Features": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCapabilities", "CloudToDevice": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceProperties", @@ -12595,7 +22708,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobResponse, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobResponse, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Status": "System.Nullable`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobStatus]", "StartTimeUtc": "System.Nullable`1[System.DateTime]", @@ -12912,7 +23025,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobResponse, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobResponse, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Status": "System.Nullable`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobStatus]", "StartTimeUtc": "System.Nullable`1[System.DateTime]", @@ -13229,7 +23342,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Rights": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights", "KeyName": "System.String", @@ -13933,7 +24046,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties", "ResourceGroupName": "System.String", @@ -14138,7 +24251,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties", "ResourceGroupName": "System.String", @@ -14862,7 +24975,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Rights": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights", "KeyName": "System.String", @@ -15288,7 +25401,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EndpointNames": "System.Collections.Generic.IList`1[System.String]", "Value": "System.String", @@ -15343,7 +25456,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -15550,7 +25663,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -16089,7 +26202,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsEnabled": "System.Boolean", "EndpointNames": "System.Collections.Generic.IList`1[System.String]", @@ -16146,7 +26259,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -16278,7 +26391,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16474,7 +26587,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -16564,7 +26677,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16861,7 +26974,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17134,7 +27247,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17458,7 +27571,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionString": "System.String", "Name": "System.String", @@ -17510,7 +27623,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionString": "System.String", "Name": "System.String", @@ -17562,7 +27675,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionString": "System.String", "Name": "System.String", @@ -17614,7 +27727,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BatchFrequencyInSeconds": "System.Nullable`1[System.Int32]", "MaxChunkSizeInBytes": "System.Nullable`1[System.Int32]", @@ -17675,7 +27788,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -17807,7 +27920,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18003,7 +28116,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -18093,7 +28206,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18390,7 +28503,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18663,7 +28776,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18939,7 +29052,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EndpointNames": "System.Collections.Generic.IList`1[System.String]", "Value": "System.String", @@ -18990,7 +29103,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentProperties[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentProperties[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentProperties", "GenericTypeArguments": [], @@ -19009,7 +29122,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -19180,7 +29293,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -19575,7 +29688,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsEnabled": "System.Boolean", "EndpointNames": "System.Collections.Generic.IList`1[System.String]", @@ -19628,7 +29741,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteProperties[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteProperties[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteProperties", "GenericTypeArguments": [], @@ -19647,7 +29760,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -19818,7 +29931,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -20235,7 +30348,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionString": "System.String", "Name": "System.String", @@ -20287,7 +30400,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubProperties]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -20304,7 +30417,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionString": "System.String", "Name": "System.String", @@ -20356,7 +30469,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpointProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpointProperties[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpointProperties[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpointProperties", "GenericTypeArguments": [], @@ -20371,7 +30484,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionString": "System.String", "Name": "System.String", @@ -20423,7 +30536,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpointProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpointProperties[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpointProperties[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpointProperties", "GenericTypeArguments": [], @@ -20438,7 +30551,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BatchFrequencyInSeconds": "System.Nullable`1[System.Int32]", "MaxChunkSizeInBytes": "System.Nullable`1[System.Int32]", @@ -20495,7 +30608,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerProperties[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerProperties[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerProperties", "GenericTypeArguments": [], @@ -20510,7 +30623,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingCustomEndpoint[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingCustomEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingCustomEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingCustomEndpoint", "GenericTypeArguments": [], @@ -20529,7 +30642,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -20643,7 +30756,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20803,7 +30916,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -20869,7 +30982,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21094,7 +31207,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21295,7 +31408,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21472,7 +31585,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21675,7 +31788,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -21864,7 +31977,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -22374,7 +32487,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -22563,7 +32676,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -23095,7 +33208,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -23227,7 +33340,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23387,7 +33500,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -23477,7 +33590,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23726,7 +33839,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23951,7 +34064,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24152,7 +34265,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24336,7 +34449,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EndpointNames": "System.Collections.Generic.IList`1[System.String]", "Value": "System.String", @@ -24391,7 +34504,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -24598,7 +34711,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -25137,7 +35250,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsEnabled": "System.Boolean", "EndpointNames": "System.Collections.Generic.IList`1[System.String]", @@ -25194,7 +35307,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -25326,7 +35439,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -25439,7 +35552,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -25529,7 +35642,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -25743,7 +35856,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -25933,7 +36046,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -26075,7 +36188,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -26224,7 +36337,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSTestRouteResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSTestRouteResult, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSTestRouteResult, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Details": "Microsoft.Azure.Commands.Management.IotHub.Models.PSTestRouteResultDetails", "Result": "System.String" @@ -26274,7 +36387,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteCompilationError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteCompilationError, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteCompilationError, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Location": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteErrorRange", "Severity": "System.String", @@ -26325,7 +36438,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteProperties[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteProperties[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteProperties", "GenericTypeArguments": [], @@ -26344,7 +36457,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -26476,7 +36589,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26690,7 +36803,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -26920,7 +37033,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -26986,7 +37099,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27471,7 +37584,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27908,7 +38021,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28260,7 +38373,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -28357,7 +38470,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28606,7 +38719,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Feedback": "Microsoft.Azure.Commands.Management.IotHub.Models.PSFeedbackProperties", "MaxDeliveryCount": "System.Nullable`1[System.Int32]", @@ -28660,7 +38773,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Endpoints": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEndpoints", "FallbackRoute": "Microsoft.Azure.Management.IotHub.Models.PSFallbackRouteMetadata", @@ -28715,7 +38828,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -28735,7 +38848,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.IotHub.Models", "Name": "Microsoft.Azure.Management.IotHub.Models.PSFallbackRouteMetadata", - "AssemblyQualifiedName": "Microsoft.Azure.Management.IotHub.Models.PSFallbackRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.IotHub.Models.PSFallbackRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsEnabled": "System.Boolean", "EndpointNames": "System.Collections.Generic.IList`1[System.String]", @@ -28922,7 +39035,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -29501,7 +39614,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Feedback": "Microsoft.Azure.Commands.Management.IotHub.Models.PSFeedbackProperties", "MaxDeliveryCount": "System.Nullable`1[System.Int32]", @@ -29653,7 +39766,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Endpoints": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEndpoints", "FallbackRoute": "Microsoft.Azure.Management.IotHub.Models.PSFallbackRouteMetadata", @@ -29806,7 +39919,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -29924,7 +40037,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.IotHub.Models", "Name": "Microsoft.Azure.Management.IotHub.Models.PSFallbackRouteMetadata", - "AssemblyQualifiedName": "Microsoft.Azure.Management.IotHub.Models.PSFallbackRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.IotHub.Models.PSFallbackRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsEnabled": "System.Boolean", "EndpointNames": "System.Collections.Generic.IList`1[System.String]", @@ -30085,7 +40198,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties", "ResourceGroupName": "System.String", @@ -30144,7 +40257,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties", "ResourceGroupName": "System.String", @@ -30349,7 +40462,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties", "ResourceGroupName": "System.String", @@ -30814,7 +40927,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", @@ -31332,7 +41445,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsVerified": "System.Nullable`1[System.Boolean]", "Expiry": "System.Nullable`1[System.DateTime]", @@ -31615,7 +41728,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -31720,7 +41833,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationType", "SymmetricKey": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSymmetricKey", @@ -31766,7 +41879,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationType": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -31861,7 +41974,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSSymmetricKey": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSymmetricKey", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSymmetricKey, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSymmetricKey, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrimaryKey": "System.String", "SecondaryKey": "System.String" @@ -31906,7 +42019,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSX509Thumbprint": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSX509Thumbprint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSX509Thumbprint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSX509Thumbprint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrimaryThumbprint": "System.String", "SecondaryThumbprint": "System.String" @@ -31951,7 +42064,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceCapabilities": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceCapabilities", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceCapabilities, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceCapabilities, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IotEdge": "System.Boolean" }, @@ -31995,7 +42108,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -32090,7 +42203,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -32185,7 +42298,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Features": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCapabilities", "CloudToDevice": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceProperties", @@ -32240,7 +42353,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSCapabilities": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCapabilities", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCapabilities, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCapabilities, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -32335,7 +42448,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceProperties": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Feedback": "Microsoft.Azure.Commands.Management.IotHub.Models.PSFeedbackProperties", "MaxDeliveryCount": "System.Nullable`1[System.Int32]", @@ -32381,7 +42494,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSFeedbackProperties": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSFeedbackProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSFeedbackProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSFeedbackProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MaxDeliveryCount": "System.Nullable`1[System.Int32]", "TtlAsIso8601": "System.Nullable`1[System.TimeSpan]", @@ -32461,7 +42574,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingProperties": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Endpoints": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEndpoints", "FallbackRoute": "Microsoft.Azure.Management.IotHub.Models.PSFallbackRouteMetadata", @@ -32508,7 +42621,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEndpoints": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEndpoints", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEndpoints, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEndpoints, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EventHubs": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubProperties]", "ServiceBusQueues": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpointProperties]", @@ -32555,7 +42668,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubProperties]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubProperties]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -32567,7 +42680,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubProperties": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionString": "System.String", "Name": "System.String", @@ -32614,7 +42727,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpointProperties]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpointProperties]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -32626,7 +42739,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpointProperties": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpointProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionString": "System.String", "Name": "System.String", @@ -32673,7 +42786,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpointProperties]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpointProperties]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -32685,7 +42798,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpointProperties": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpointProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionString": "System.String", "Name": "System.String", @@ -32732,7 +42845,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerProperties]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerProperties]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -32744,7 +42857,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerProperties": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BatchFrequencyInSeconds": "System.Nullable`1[System.Int32]", "MaxChunkSizeInBytes": "System.Nullable`1[System.Int32]", @@ -32796,7 +42909,7 @@ "Microsoft.Azure.Management.IotHub.Models.PSFallbackRouteMetadata": { "Namespace": "Microsoft.Azure.Management.IotHub.Models", "Name": "Microsoft.Azure.Management.IotHub.Models.PSFallbackRouteMetadata", - "AssemblyQualifiedName": "Microsoft.Azure.Management.IotHub.Models.PSFallbackRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.IotHub.Models.PSFallbackRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsEnabled": "System.Boolean", "EndpointNames": "System.Collections.Generic.IList`1[System.String]", @@ -32844,7 +42957,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -32856,7 +42969,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EndpointNames": "System.Collections.Generic.IList`1[System.String]", "Value": "System.String", @@ -32902,7 +43015,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -32914,7 +43027,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsEnabled": "System.Boolean", "EndpointNames": "System.Collections.Generic.IList`1[System.String]", @@ -32962,7 +43075,7 @@ "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubProperties]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubProperties]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -32975,7 +43088,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubProperties": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PartitionIds": "System.Collections.Generic.IList`1[System.String]", "PartitionCount": "System.Nullable`1[System.Int32]", @@ -33035,7 +43148,7 @@ "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Management.IotHub.Models.PSMessagingEndpointProperties]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Management.IotHub.Models.PSMessagingEndpointProperties]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.Management.IotHub.Models.PSMessagingEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.Management.IotHub.Models.PSMessagingEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -33048,7 +43161,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSMessagingEndpointProperties": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSMessagingEndpointProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSMessagingEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSMessagingEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MaxDeliveryCount": "System.Nullable`1[System.Int32]", "TtlAsIso8601": "System.Nullable`1[System.TimeSpan]", @@ -33094,7 +43207,7 @@ "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Management.IotHub.Models.PSStorageEndpointProperties]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Management.IotHub.Models.PSStorageEndpointProperties]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.Management.IotHub.Models.PSStorageEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.Management.IotHub.Models.PSStorageEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -33107,7 +43220,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSStorageEndpointProperties": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSStorageEndpointProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSStorageEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSStorageEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SasTtlAsIso8601": "System.Nullable`1[System.TimeSpan]", "ConnectionString": "System.String", @@ -33153,7 +43266,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubLocationDescription]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubLocationDescription]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubLocationDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubLocationDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -33165,7 +43278,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubLocationDescription": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubLocationDescription", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubLocationDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubLocationDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Location": "System.String", "Role": "System.String" @@ -33210,7 +43323,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -33222,7 +43335,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Rights": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights", "KeyName": "System.String", @@ -33269,7 +43382,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku", "Tier": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuTier", @@ -33315,7 +43428,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -33410,7 +43523,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuTier": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuTier", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuTier, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuTier, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -33505,7 +43618,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevices": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevices", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevices, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevices, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism", "Capabilities": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceCapabilities", @@ -33558,10 +43671,108 @@ } ] }, + "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevicesChildren": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevicesChildren", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevicesChildren, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ChildrenDeviceId": "System.Collections.Generic.IList`1[System.String]", + "DeviceId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "Microsoft.Azure.Commands.Management.IotHub.Models.PSModules": { + "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", + "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModules", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModules, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism", + "ConnectionState": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState", + "ConnectionStateUpdatedTime": "System.DateTime", + "LastActivityTime": "System.DateTime", + "CloudToDeviceMessageCount": "System.Int32", + "Id": "System.String", + "DeviceId": "System.String", + "GenerationId": "System.String", + "ETag": "System.String", + "ManagedBy": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificatePropertiesWithNonce": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificatePropertiesWithNonce", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificatePropertiesWithNonce, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificatePropertiesWithNonce, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsVerified": "System.Nullable`1[System.Boolean]", "Expiry": "System.Nullable`1[System.DateTime]", @@ -33611,7 +43822,7 @@ "System.Nullable`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobStatus]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobStatus]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -33623,7 +43834,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobStatus": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -33718,7 +43929,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubCapacity": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubCapacity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubCapacity, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubCapacity, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ScaleType": "System.Nullable`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubScaleType]", "Minimum": "System.Nullable`1[System.Int64]", @@ -33765,7 +43976,7 @@ "System.Nullable`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubScaleType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubScaleType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubScaleType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubScaleType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -33777,7 +43988,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubScaleType": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubScaleType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubScaleType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubScaleType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -33872,7 +44083,7 @@ "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubInputProperties]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubInputProperties]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubInputProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubInputProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -33885,7 +44096,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubInputProperties": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubInputProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubInputProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubInputProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PartitionCount": "System.Nullable`1[System.Int32]", "RetentionTimeInDays": "System.Nullable`1[System.Int64]" @@ -33930,7 +44141,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentProperties": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EndpointNames": "System.Collections.Generic.IList`1[System.String]", "Value": "System.String", @@ -33976,7 +44187,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteProperties": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsEnabled": "System.Boolean", "EndpointNames": "System.Collections.Generic.IList`1[System.String]", @@ -34024,7 +44235,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingCustomEndpoint": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingCustomEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingCustomEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingCustomEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EndpointType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType", "Name": "System.String", @@ -34072,7 +44283,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -34167,7 +44378,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -34262,7 +44473,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSTestRouteResultDetails": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSTestRouteResultDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSTestRouteResultDetails, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSTestRouteResultDetails, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CompilationErrors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteCompilationError]" }, @@ -34306,7 +44517,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteCompilationError]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteCompilationError]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteCompilationError, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteCompilationError, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -34318,7 +44529,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteCompilationError": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteCompilationError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteCompilationError, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteCompilationError, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Location": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteErrorRange", "Severity": "System.String", @@ -34364,7 +44575,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteErrorRange": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteErrorRange", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteErrorRange, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteErrorRange, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Start": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteErrorPosition", "End": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteErrorPosition" @@ -34409,7 +44620,7 @@ "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteErrorPosition": { "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models", "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteErrorPosition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteErrorPosition, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteErrorPosition, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Line": "System.Nullable`1[System.Int32]", "Column": "System.Nullable`1[System.Int32]" diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll.json index 6a1490db1181..fdc7a91d2004 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll.json @@ -79947,11 +79947,12 @@ "CreatedTime": "System.Nullable`1[System.DateTime]", "ChangedTime": "System.Nullable`1[System.DateTime]", "SubscriptionId": "System.String", + "TagsTable": "System.String", "ExtensionResourceType": "System.String", "ResourceType": "System.String", "Type": "System.String", - "ResourceGroupName": "System.String", "ResourceId": "System.String", + "ParentResource": "System.String", "ExtensionResourceName": "System.String", "Name": "System.String", "ResourceName": "System.String", @@ -79959,7 +79960,7 @@ "Location": "System.String", "Kind": "System.String", "Id": "System.String", - "ParentResource": "System.String", + "ResourceGroupName": "System.String", "ETag": "System.String" }, "ElementType": null, @@ -86065,11 +86066,12 @@ "CreatedTime": "System.Nullable`1[System.DateTime]", "ChangedTime": "System.Nullable`1[System.DateTime]", "SubscriptionId": "System.String", + "TagsTable": "System.String", "ExtensionResourceType": "System.String", "ResourceType": "System.String", "Type": "System.String", - "ResourceGroupName": "System.String", "ResourceId": "System.String", + "ParentResource": "System.String", "ExtensionResourceName": "System.String", "Name": "System.String", "ResourceName": "System.String", @@ -86077,7 +86079,7 @@ "Location": "System.String", "Kind": "System.String", "Id": "System.String", - "ParentResource": "System.String", + "ResourceGroupName": "System.String", "ETag": "System.String" }, "ElementType": null, @@ -86528,11 +86530,12 @@ "CreatedTime": "System.Nullable`1[System.DateTime]", "ChangedTime": "System.Nullable`1[System.DateTime]", "SubscriptionId": "System.String", + "TagsTable": "System.String", "ExtensionResourceType": "System.String", "ResourceType": "System.String", "Type": "System.String", - "ResourceGroupName": "System.String", "ResourceId": "System.String", + "ParentResource": "System.String", "ExtensionResourceName": "System.String", "Name": "System.String", "ResourceName": "System.String", @@ -86540,7 +86543,7 @@ "Location": "System.String", "Kind": "System.String", "Id": "System.String", - "ParentResource": "System.String", + "ResourceGroupName": "System.String", "ETag": "System.String" }, "ElementType": null, diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Resources.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Resources.dll.json index 38ae3bf45456..747d5e9a9359 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Resources.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Resources.dll.json @@ -14,7 +14,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization", "Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSDenyAssignment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSDenyAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSDenyAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DoNotApplyToChildScopes": "System.Boolean", "IsSystemProtected": "System.Boolean", @@ -2235,7 +2235,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models", "Name": "Microsoft.Azure.Commands.Resources.Models.PSResourceProviderOperation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.PSResourceProviderOperation, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.PSResourceProviderOperation, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsDataAction": "System.Boolean", "Operation": "System.String", @@ -2431,7 +2431,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization", "Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CanDelegate": "System.Boolean", "RoleAssignmentId": "System.String", @@ -5341,7 +5341,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization", "Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CanDelegate": "System.Boolean", "RoleAssignmentId": "System.String", @@ -7369,7 +7369,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization", "Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CanDelegate": "System.Boolean", "RoleAssignmentId": "System.String", @@ -7636,7 +7636,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization", "Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CanDelegate": "System.Boolean", "RoleAssignmentId": "System.String", @@ -9589,7 +9589,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization", "Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CanDelegate": "System.Boolean", "RoleAssignmentId": "System.String", @@ -9730,7 +9730,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization", "Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsCustom": "System.Boolean", "Actions": "System.Collections.Generic.List`1[System.String]", @@ -10229,7 +10229,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization", "Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsCustom": "System.Boolean", "Actions": "System.Collections.Generic.List`1[System.String]", @@ -10308,7 +10308,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization", "Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsCustom": "System.Boolean", "Actions": "System.Collections.Generic.List`1[System.String]", @@ -10475,7 +10475,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization", "Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsCustom": "System.Boolean", "Actions": "System.Collections.Generic.List`1[System.String]", @@ -10691,7 +10691,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization", "Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsCustom": "System.Boolean", "Actions": "System.Collections.Generic.List`1[System.String]", @@ -11124,7 +11124,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization", "Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsCustom": "System.Boolean", "Actions": "System.Collections.Generic.List`1[System.String]", @@ -11381,7 +11381,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization", "Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsCustom": "System.Boolean", "Actions": "System.Collections.Generic.List`1[System.String]", @@ -11460,7 +11460,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization", "Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsCustom": "System.Boolean", "Actions": "System.Collections.Generic.List`1[System.String]", @@ -11627,7 +11627,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization", "Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsCustom": "System.Boolean", "Actions": "System.Collections.Generic.List`1[System.String]", @@ -11788,7 +11788,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups", "Name": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupInfo, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupInfo, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Id": "System.String", "Type": "System.String", @@ -11851,7 +11851,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups", "Name": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]", "UpdatedTime": "System.Nullable`1[System.DateTime]", @@ -12104,7 +12104,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups", "Name": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]", "UpdatedTime": "System.Nullable`1[System.DateTime]", @@ -12827,7 +12827,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups", "Name": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]", "UpdatedTime": "System.Nullable`1[System.DateTime]", @@ -12974,7 +12974,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups", "Name": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]", "UpdatedTime": "System.Nullable`1[System.DateTime]", @@ -13542,7 +13542,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups", "Name": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]", "UpdatedTime": "System.Nullable`1[System.DateTime]", @@ -13615,7 +13615,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups", "Name": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]", "UpdatedTime": "System.Nullable`1[System.DateTime]", @@ -13780,7 +13780,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups", "Name": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]", "UpdatedTime": "System.Nullable`1[System.DateTime]", @@ -13926,7 +13926,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups", "Name": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]", "UpdatedTime": "System.Nullable`1[System.DateTime]", @@ -14428,7 +14428,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityEnabled": "System.Nullable`1[System.Boolean]", "MailNickname": "System.String", @@ -14701,7 +14701,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityEnabled": "System.Nullable`1[System.Boolean]", "MailNickname": "System.String", @@ -15089,7 +15089,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityEnabled": "System.Nullable`1[System.Boolean]", "MailNickname": "System.String", @@ -15412,7 +15412,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StartDate": "System.String", "EndDate": "System.String", @@ -15522,7 +15522,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -15826,7 +15826,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -15988,7 +15988,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -16574,7 +16574,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityEnabled": "System.Nullable`1[System.Boolean]", "MailNickname": "System.String", @@ -17053,7 +17053,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADObject, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADObject, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayName": "System.String", "Id": "System.String", @@ -17147,7 +17147,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityEnabled": "System.Nullable`1[System.Boolean]", "MailNickname": "System.String", @@ -17383,7 +17383,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityEnabled": "System.Nullable`1[System.Boolean]", "MailNickname": "System.String", @@ -17542,7 +17542,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -17674,7 +17674,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -18068,7 +18068,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -18304,7 +18304,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StartDate": "System.String", "EndDate": "System.String", @@ -18416,7 +18416,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -18718,7 +18718,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -18878,7 +18878,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserPrincipalName": "System.String", "ObjectType": "System.String", @@ -19533,7 +19533,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StartDate": "System.String", "EndDate": "System.String", @@ -19643,7 +19643,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -20655,7 +20655,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -20838,7 +20838,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -21120,7 +21120,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -21272,7 +21272,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential", "GenericTypeArguments": [], @@ -21290,7 +21290,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential", "GenericTypeArguments": [], @@ -21939,7 +21939,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential", "GenericTypeArguments": [], @@ -22363,7 +22363,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential", "GenericTypeArguments": [], @@ -22482,7 +22482,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityEnabled": "System.Nullable`1[System.Boolean]", "MailNickname": "System.String", @@ -22757,7 +22757,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -22811,7 +22811,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization", "Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSADServicePrincipalWrapper", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSADServicePrincipalWrapper, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSADServicePrincipalWrapper, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ApplicationId": "System.Guid", "Secret": "System.Security.SecureString", @@ -22911,7 +22911,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -22974,7 +22974,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential", "GenericTypeArguments": [], @@ -22994,7 +22994,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential", "GenericTypeArguments": [], @@ -23369,7 +23369,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential", "GenericTypeArguments": [], @@ -23603,7 +23603,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential", "GenericTypeArguments": [], @@ -24093,7 +24093,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential", "GenericTypeArguments": [], @@ -24327,7 +24327,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential", "GenericTypeArguments": [], @@ -24395,7 +24395,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -24554,7 +24554,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -24623,7 +24623,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential", "GenericTypeArguments": [], @@ -24691,7 +24691,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -24874,7 +24874,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -24943,7 +24943,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential", "GenericTypeArguments": [], @@ -25062,7 +25062,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StartDate": "System.String", "EndDate": "System.String", @@ -25114,7 +25114,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization", "Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSADCredentialWrapper", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSADCredentialWrapper, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSADCredentialWrapper, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Secret": "System.Security.SecureString", "StartDate": "System.String", @@ -25216,7 +25216,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -25886,7 +25886,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -26065,7 +26065,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -26321,7 +26321,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserPrincipalName": "System.String", "ObjectType": "System.String", @@ -26811,7 +26811,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -27367,7 +27367,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -27698,7 +27698,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -28182,7 +28182,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -28434,7 +28434,7 @@ "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ObjectIdParameterSet", + "DefaultParameterSetName": "DisplayNameParameterSet", "OutputTypes": [ { "Type": { @@ -28495,7 +28495,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityEnabled": "System.Nullable`1[System.Boolean]", "MailNickname": "System.String", @@ -28664,7 +28664,7 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -28688,7 +28688,7 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -28780,7 +28780,7 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -28804,7 +28804,7 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -28860,7 +28860,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityEnabled": "System.Nullable`1[System.Boolean]", "MailNickname": "System.String", @@ -28936,7 +28936,7 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -28960,7 +28960,7 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -29028,7 +29028,7 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -29052,7 +29052,7 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -29206,7 +29206,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityEnabled": "System.Nullable`1[System.Boolean]", "MailNickname": "System.String", @@ -29461,7 +29461,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityEnabled": "System.Nullable`1[System.Boolean]", "MailNickname": "System.String", @@ -29849,7 +29849,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityEnabled": "System.Nullable`1[System.Boolean]", "MailNickname": "System.String", @@ -30176,7 +30176,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -30311,7 +30311,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -30368,7 +30368,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -30973,7 +30973,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -31128,7 +31128,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -31459,7 +31459,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -32005,7 +32005,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -32378,7 +32378,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserPrincipalName": "System.String", "ObjectType": "System.String", @@ -32975,7 +32975,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserPrincipalName": "System.String", "ObjectType": "System.String", @@ -33228,7 +33228,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -33326,7 +33326,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -33904,7 +33904,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -34192,7 +34192,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -34308,7 +34308,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -35038,7 +35038,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -35414,7 +35414,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserPrincipalName": "System.String", "ObjectType": "System.String", @@ -35527,7 +35527,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserPrincipalName": "System.String", "ObjectType": "System.String", @@ -36196,7 +36196,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserPrincipalName": "System.String", "ObjectType": "System.String", @@ -36584,7 +36584,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Resources.Models.Authorization.PSPrincipal]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Resources.Models.Authorization.PSPrincipal]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Resources.Models.Authorization.PSPrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Resources.Models.Authorization.PSPrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -36596,7 +36596,7 @@ "Microsoft.Azure.Commands.Resources.Models.Authorization.PSPrincipal": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization", "Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSPrincipal", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSPrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSPrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ObjectId": "System.Guid", "ObjectType": "System.String", @@ -36864,7 +36864,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -36876,7 +36876,7 @@ "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups", "Name": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]", "Type": "System.String", @@ -36978,7 +36978,7 @@ "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StartDate": "System.DateTime", "EndDate": "System.DateTime", @@ -37025,7 +37025,7 @@ "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StartDate": "System.DateTime", "EndDate": "System.DateTime", diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Sql.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Sql.dll.json index a8006609808d..44908180a953 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Sql.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Sql.dll.json @@ -14,7 +14,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -128,7 +128,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -417,7 +417,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -662,7 +662,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -776,7 +776,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -1065,7 +1065,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -1310,7 +1310,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -1424,7 +1424,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -1540,7 +1540,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1784,7 +1784,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2009,7 +2009,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -2125,7 +2125,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2446,7 +2446,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2743,7 +2743,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2975,7 +2975,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -3089,7 +3089,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -3351,7 +3351,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -3589,7 +3589,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -3703,7 +3703,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -3965,7 +3965,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -4203,7 +4203,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -4317,7 +4317,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -4433,7 +4433,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4677,7 +4677,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4902,7 +4902,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -5018,7 +5018,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5339,7 +5339,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5636,7 +5636,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5868,7 +5868,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -5977,7 +5977,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -6180,7 +6180,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -6353,7 +6353,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -6462,7 +6462,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -6665,7 +6665,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -6838,7 +6838,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -6947,7 +6947,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -7063,7 +7063,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7337,7 +7337,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7610,7 +7610,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7811,7 +7811,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -7879,7 +7879,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8080,7 +8080,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8288,7 +8288,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ServerVulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ServerVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ServerVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -8397,7 +8397,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -8408,7 +8408,8 @@ "SqlAdministratorLogin": "System.String", "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", - "ResourceId": "System.String" + "ResourceId": "System.String", + "PublicNetworkAccess": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -8589,7 +8590,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -8600,7 +8601,8 @@ "SqlAdministratorLogin": "System.String", "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", - "ResourceId": "System.String" + "ResourceId": "System.String", + "PublicNetworkAccess": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -8751,7 +8753,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ServerVulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ServerVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ServerVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -8860,7 +8862,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -8871,7 +8873,8 @@ "SqlAdministratorLogin": "System.String", "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", - "ResourceId": "System.String" + "ResourceId": "System.String", + "PublicNetworkAccess": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -9052,7 +9055,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -9063,7 +9066,8 @@ "SqlAdministratorLogin": "System.String", "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", - "ResourceId": "System.String" + "ResourceId": "System.String", + "PublicNetworkAccess": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -9214,7 +9218,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -9328,7 +9332,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -9444,7 +9448,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9718,7 +9722,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9991,7 +9995,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10192,7 +10196,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -10260,7 +10264,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10461,7 +10465,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10669,7 +10673,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanExportModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanExportModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanExportModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServerName": "System.String", "DatabaseName": "System.String", @@ -10775,7 +10779,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType", "Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]", @@ -11050,7 +11054,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType", "Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]", @@ -11263,7 +11267,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanRecordModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType", "Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]", @@ -11375,7 +11379,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -11706,7 +11710,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -11975,7 +11979,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanRecordModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType", "Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]", @@ -12087,7 +12091,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -12460,7 +12464,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -12753,7 +12757,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanExportModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanExportModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanExportModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "InstanceName": "System.String", "DatabaseName": "System.String", @@ -12859,7 +12863,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType", "Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]", @@ -13134,7 +13138,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType", "Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]", @@ -13391,7 +13395,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanRecordModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType", "Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]", @@ -13503,7 +13507,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -13807,7 +13811,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -14093,7 +14097,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanRecordModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType", "Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]", @@ -14205,7 +14209,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -14551,7 +14555,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -14885,7 +14889,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleAppliesToMaster": "System.Boolean", "BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]", @@ -14992,7 +14996,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -15365,7 +15369,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -15658,7 +15662,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleAppliesToMaster": "System.Boolean", "BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]", @@ -15765,7 +15769,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -16138,7 +16142,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -16431,7 +16435,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleAppliesToMaster": "System.Boolean", "BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]", @@ -16538,7 +16542,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleAppliesToMaster": "System.Boolean", "BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]", @@ -16892,7 +16896,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleAppliesToMaster": "System.Boolean", "BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]", @@ -17148,7 +17152,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleAppliesToMaster": "System.Boolean", "BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]", @@ -17255,7 +17259,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -17601,7 +17605,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -17935,7 +17939,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleAppliesToMaster": "System.Boolean", "BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]", @@ -18042,7 +18046,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -18388,7 +18392,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -18722,7 +18726,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleAppliesToMaster": "System.Boolean", "BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]", @@ -18829,7 +18833,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleAppliesToMaster": "System.Boolean", "BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]", @@ -19183,7 +19187,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleAppliesToMaster": "System.Boolean", "BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]", @@ -19531,7 +19535,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model", "Name": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IgnoreMissingVnetServiceEndpoint": "System.Nullable`1[System.Boolean]", "ResourceGroupName": "System.String", @@ -19805,7 +19809,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model", "Name": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IgnoreMissingVnetServiceEndpoint": "System.Nullable`1[System.Boolean]", "ResourceGroupName": "System.String", @@ -20205,7 +20209,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model", "Name": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IgnoreMissingVnetServiceEndpoint": "System.Nullable`1[System.Boolean]", "ResourceGroupName": "System.String", @@ -20521,7 +20525,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model", "Name": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IgnoreMissingVnetServiceEndpoint": "System.Nullable`1[System.Boolean]", "ResourceGroupName": "System.String", @@ -20921,7 +20925,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model", "Name": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "Location": "System.String", @@ -21355,7 +21359,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model", "Name": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "Location": "System.String", @@ -21453,7 +21457,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model", "Name": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "Location": "System.String", @@ -21705,7 +21709,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model", "Name": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "Location": "System.String", @@ -22003,7 +22007,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Usages.Models", "Name": "Microsoft.Azure.Commands.Sql.Usages.Models.AzureSqlUsageModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Usages.Models.AzureSqlUsageModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Usages.Models.AzureSqlUsageModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CurrentValue": "System.Nullable`1[System.Int32]", "Limit": "System.Nullable`1[System.Int32]", @@ -22062,7 +22066,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model", "Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Sql.Models.Sku", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -22240,7 +22244,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model", "Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Sql.Models.Sku", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -22664,7 +22668,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.ServerKeyType", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -22756,7 +22760,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -22943,7 +22947,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -23774,7 +23778,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -23785,7 +23789,8 @@ "SqlAdministratorLogin": "System.String", "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", - "ResourceId": "System.String" + "ResourceId": "System.String", + "PublicNetworkAccess": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -24032,7 +24037,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -24043,7 +24048,8 @@ "SqlAdministratorLogin": "System.String", "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", - "ResourceId": "System.String" + "ResourceId": "System.String", + "PublicNetworkAccess": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -24526,7 +24532,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.ServerKeyType", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -24636,7 +24642,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -24829,7 +24835,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -25212,7 +25218,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceTransparentDataEncryptionProtectorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType", "ResourceGroupName": "System.String", @@ -25320,7 +25326,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -25489,7 +25495,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -25826,7 +25832,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "State": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType", "ResourceGroupName": "System.String", @@ -26098,7 +26104,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionActivityModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Status": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionActivityStatusType", "PercentComplete": "System.Single", @@ -26371,7 +26377,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlServerTransparentDataEncryptionProtectorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlServerTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlServerTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType", "ResourceGroupName": "System.String", @@ -26602,7 +26608,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.ServerKeyType", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -26694,7 +26700,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -26881,7 +26887,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -27288,7 +27294,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceTransparentDataEncryptionProtectorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType", "ResourceGroupName": "System.String", @@ -27394,7 +27400,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27535,7 +27541,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -27702,7 +27708,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27837,7 +27843,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -27983,7 +27989,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28210,7 +28216,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28536,7 +28542,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "State": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType", "ResourceGroupName": "System.String", @@ -28592,7 +28598,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28788,7 +28794,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -29020,7 +29026,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlServerTransparentDataEncryptionProtectorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlServerTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlServerTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType", "ResourceGroupName": "System.String", @@ -29077,7 +29083,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -29309,7 +29315,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -29589,7 +29595,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model", "Name": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ThreatDetectionState": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType", "EmailAdmins": "System.Boolean", @@ -29868,7 +29874,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model", "Name": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ThreatDetectionState": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType", "EmailAdmins": "System.Boolean", @@ -30104,7 +30110,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model", "Name": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ThreatDetectionState": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType", "EmailAdmins": "System.Boolean", @@ -30425,7 +30431,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model", "Name": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ThreatDetectionState": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType", "EmailAdmins": "System.Boolean", @@ -30703,7 +30709,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model", "Name": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ThreatDetectionState": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType", "EmailAdmins": "System.Boolean", @@ -31242,7 +31248,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model", "Name": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ThreatDetectionState": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType", "EmailAdmins": "System.Boolean", @@ -32051,7 +32057,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServiceTierAdvisor.Model", "Name": "Microsoft.Azure.Commands.Sql.ServiceTierAdvisor.Model.UpgradeServerHint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServiceTierAdvisor.Model.UpgradeServerHint, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServiceTierAdvisor.Model.UpgradeServerHint, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Databases": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedDatabaseProperties]", "ElasticPools": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.UpgradeRecommendedElasticPoolProperties]" @@ -32321,7 +32327,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServiceObjective.Model", "Name": "Microsoft.Azure.Commands.Sql.ServiceObjective.Model.AzureSqlServerServiceObjectiveModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServiceObjective.Model.AzureSqlServerServiceObjectiveModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServiceObjective.Model.AzureSqlServerServiceObjectiveModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "IsDefault": "System.Boolean", @@ -32755,7 +32761,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -32766,7 +32772,8 @@ "SqlAdministratorLogin": "System.String", "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", - "ResourceId": "System.String" + "ResourceId": "System.String", + "PublicNetworkAccess": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -32995,7 +33002,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -33006,7 +33013,8 @@ "SqlAdministratorLogin": "System.String", "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", - "ResourceId": "System.String" + "ResourceId": "System.String", + "PublicNetworkAccess": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -33163,6 +33171,24 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "PublicNetworkAccess", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "AsJob", "AliasList": [], @@ -33385,6 +33411,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "PublicNetworkAccess", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "AsJob", @@ -33491,7 +33541,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -33502,7 +33552,8 @@ "SqlAdministratorLogin": "System.String", "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", - "ResourceId": "System.String" + "ResourceId": "System.String", + "PublicNetworkAccess": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -33773,7 +33824,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -33784,7 +33835,8 @@ "SqlAdministratorLogin": "System.String", "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", - "ResourceId": "System.String" + "ResourceId": "System.String", + "PublicNetworkAccess": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -33923,6 +33975,24 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "PublicNetworkAccess", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "Force", "AliasList": [], @@ -34121,6 +34191,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "PublicNetworkAccess", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Force", @@ -34227,7 +34321,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel+ServerKeyType", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -34544,7 +34638,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel+ServerKeyType", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -34819,7 +34913,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel+ServerKeyType", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -35136,7 +35230,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -35412,7 +35506,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -35730,7 +35824,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -35842,7 +35936,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -36156,7 +36250,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -36524,7 +36618,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -36972,7 +37066,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -37267,7 +37361,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationActivityModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationActivityModel+ServerDisasterRecoveryConfigurationState", "OperationId": "System.Guid", @@ -37593,7 +37687,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -38056,7 +38150,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -38393,7 +38487,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -38954,7 +39048,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -39228,7 +39322,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -39586,7 +39680,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -39902,7 +39996,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ObjectId": "System.Guid", "ResourceGroupName": "System.String", @@ -40132,7 +40226,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ObjectId": "System.Guid", "ResourceGroupName": "System.String", @@ -40404,7 +40498,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ObjectId": "System.Guid", "ResourceGroupName": "System.String", @@ -40718,7 +40812,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model", "Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowConnections": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -41093,7 +41187,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model", "Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureSqlDatabaseCopyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureSqlDatabaseCopyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureSqlDatabaseCopyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -42334,7 +42428,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model", "Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowConnections": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -42537,7 +42631,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model", "Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -42913,7 +43007,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model", "Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -43332,7 +43426,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model", "Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -43755,7 +43849,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model", "Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -44011,7 +44105,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model", "Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowConnections": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -44386,7 +44480,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model", "Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowConnections": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -45247,7 +45341,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model", "Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlDatabaseRecommendedActionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlDatabaseRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlDatabaseRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ErrorDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo", "ImplementationDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo", @@ -45653,7 +45747,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model", "Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlElasticPoolRecommendedActionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlElasticPoolRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlElasticPoolRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ErrorDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo", "ImplementationDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo", @@ -46059,7 +46153,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model", "Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlServerRecommendedActionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlServerRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlServerRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ErrorDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo", "ImplementationDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo", @@ -46418,7 +46512,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model", "Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlDatabaseRecommendedActionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlDatabaseRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlDatabaseRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ErrorDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo", "ImplementationDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo", @@ -46542,7 +46636,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet", "Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -46780,7 +46874,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet", "Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -47036,7 +47130,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model", "Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlElasticPoolRecommendedActionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlElasticPoolRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlElasticPoolRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ErrorDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo", "ImplementationDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo", @@ -47160,7 +47254,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet", "Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -47398,7 +47492,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet", "Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -47654,7 +47748,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model", "Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlServerRecommendedActionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlServerRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlServerRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ErrorDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo", "ImplementationDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo", @@ -47773,7 +47867,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet", "Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -47993,7 +48087,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet", "Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -48225,7 +48319,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -48300,7 +48394,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model", "Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Sql.Models.Sku", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -48496,7 +48590,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model", "Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Sql.Models.Sku", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -48982,7 +49076,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -49057,7 +49151,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model", "Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Sql.Models.Sku", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -49545,7 +49639,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model", "Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Sql.Models.Sku", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -51613,7 +51707,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -51726,7 +51820,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -51993,7 +52087,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -52306,7 +52400,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -52381,7 +52475,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -52774,7 +52868,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -54293,7 +54387,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ManagedInstanceName": "System.String", @@ -54633,7 +54727,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -54801,7 +54895,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -55154,7 +55248,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -55327,7 +55421,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -55513,7 +55607,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -56000,7 +56094,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -56399,7 +56493,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -56547,7 +56641,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -56855,7 +56949,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -57185,7 +57279,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -57412,7 +57506,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationDate": "System.Nullable`1[System.DateTime]", "EarliestRestorePoint": "System.Nullable`1[System.DateTime]", @@ -57465,7 +57559,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ManagedInstanceName": "System.String", @@ -57958,7 +58052,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationDate": "System.Nullable`1[System.DateTime]", "EarliestRestorePoint": "System.Nullable`1[System.DateTime]", @@ -58614,7 +58708,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationDate": "System.Nullable`1[System.DateTime]", "EarliestRestorePoint": "System.Nullable`1[System.DateTime]", @@ -59659,7 +59753,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ManagedInstanceName": "System.String", @@ -60410,7 +60504,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlDeletedManagedDatabaseBackupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlDeletedManagedDatabaseBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlDeletedManagedDatabaseBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DeletionDate": "System.DateTime", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -60939,7 +61033,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupShortTermRetentionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupShortTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupShortTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RetentionDays": "System.Int32", "DeletionDate": "System.Nullable`1[System.DateTime]", @@ -61020,7 +61114,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationDate": "System.Nullable`1[System.DateTime]", "EarliestRestorePoint": "System.Nullable`1[System.DateTime]", @@ -61205,7 +61299,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationDate": "System.Nullable`1[System.DateTime]", "EarliestRestorePoint": "System.Nullable`1[System.DateTime]", @@ -61567,7 +61661,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model", "Name": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.LocationCapabilityModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.LocationCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.LocationCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SupportedServerVersions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel]", "LocationName": "System.String", @@ -62059,7 +62153,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model", "Name": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model.AzureSqlInstanceActiveDirectoryAdministratorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model.AzureSqlInstanceActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model.AzureSqlInstanceActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ObjectId": "System.Guid", "ResourceGroupName": "System.String", @@ -62115,7 +62209,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -62280,7 +62374,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -62613,7 +62707,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model", "Name": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model.AzureSqlInstanceActiveDirectoryAdministratorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model.AzureSqlInstanceActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model.AzureSqlInstanceActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ObjectId": "System.Guid", "ResourceGroupName": "System.String", @@ -62705,7 +62799,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -62962,7 +63056,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -63395,7 +63489,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model", "Name": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model.AzureSqlInstanceActiveDirectoryAdministratorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model.AzureSqlInstanceActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model.AzureSqlInstanceActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ObjectId": "System.Guid", "ResourceGroupName": "System.String", @@ -63487,7 +63581,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -63744,7 +63838,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -64177,7 +64271,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model", "Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Sql.Models.Sku", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -64617,7 +64711,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model", "Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Sql.Models.Sku", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -65203,7 +65297,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model", "Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Sql.Models.Sku", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -65267,7 +65361,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model", "Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Sql.Models.Sku", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -65425,7 +65519,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model", "Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Sql.Models.Sku", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -65751,7 +65845,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model", "Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Sql.Models.Sku", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -65815,7 +65909,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model", "Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Sql.Models.Sku", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -66029,7 +66123,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model", "Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Sql.Models.Sku", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -66651,7 +66745,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]", "ResourceGroupName": "System.String", @@ -66933,7 +67027,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]", "ResourceGroupName": "System.String", @@ -67551,7 +67645,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]", "ResourceGroupName": "System.String", @@ -67671,7 +67765,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]", "ResourceGroupName": "System.String", @@ -68133,7 +68227,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]", "ResourceGroupName": "System.String", @@ -68395,7 +68489,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]", "ResourceGroupName": "System.String", @@ -68515,7 +68609,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]", "ResourceGroupName": "System.String", @@ -69043,7 +69137,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]", "ResourceGroupName": "System.String", @@ -69353,7 +69447,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]", "ResourceGroupName": "System.String", @@ -69473,7 +69567,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]", "ResourceGroupName": "System.String", @@ -69869,7 +69963,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]", "ResourceGroupName": "System.String", @@ -70083,7 +70177,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Model", "Name": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EstimatedImpact": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact]", "ReportedImpact": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact]", @@ -70454,7 +70548,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Model", "Name": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EstimatedImpact": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact]", "ReportedImpact": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact]", @@ -70783,7 +70877,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Model", "Name": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EstimatedImpact": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact]", "ReportedImpact": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact]", @@ -71112,7 +71206,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportStatusModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportStatusModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportStatusModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OperationStatusLink": "System.String", "ErrorMessage": "System.String", @@ -71302,7 +71396,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportBaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AuthenticationType": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType", "StorageKeyType": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType", @@ -71402,7 +71496,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -71577,7 +71671,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -71785,7 +71879,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -71990,7 +72084,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -72174,7 +72268,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportBaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AuthenticationType": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType", "StorageKeyType": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType", @@ -72256,7 +72350,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseEdition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseEdition, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseEdition, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -72413,7 +72507,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -72588,7 +72682,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -72772,7 +72866,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseEdition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseEdition, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseEdition, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -72953,7 +73047,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -73158,7 +73252,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -73342,7 +73436,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FirewallRule.Model", "Name": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -73619,7 +73713,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FirewallRule.Model", "Name": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -74206,7 +74300,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FirewallRule.Model", "Name": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -74525,7 +74619,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FirewallRule.Model", "Name": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -74886,7 +74980,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint", "FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint", @@ -75016,7 +75110,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -75141,7 +75235,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -75242,7 +75336,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint", "FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint", @@ -75552,7 +75646,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint", "FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint", @@ -75718,7 +75812,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -75839,7 +75933,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -76095,7 +76189,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -76228,7 +76322,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -76412,7 +76506,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint", "FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint", @@ -76542,7 +76636,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -76685,7 +76779,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -76810,7 +76904,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint", "FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint", @@ -77162,7 +77256,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint", "FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint", @@ -77292,7 +77386,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -77413,7 +77507,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -77621,7 +77715,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -77754,7 +77848,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -77938,7 +78032,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint", "FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint", @@ -78332,7 +78426,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticPool.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -78625,7 +78719,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticPool.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolActivityModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OperationId": "System.Guid", "IsCancellable": "System.Nullable`1[System.Boolean]", @@ -78959,7 +79053,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -79699,7 +79793,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticPool.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -81046,7 +81140,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticPool.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -81381,7 +81475,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticPool.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -82732,7 +82826,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticPool.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolActivityModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OperationId": "System.Guid", "IsCancellable": "System.Nullable`1[System.Boolean]", @@ -83108,7 +83202,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -83189,7 +83283,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -83200,7 +83294,8 @@ "SqlAdministratorLogin": "System.String", "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", - "ResourceId": "System.String" + "ResourceId": "System.String", + "PublicNetworkAccess": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -83463,7 +83558,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -83474,7 +83569,8 @@ "SqlAdministratorLogin": "System.String", "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", - "ResourceId": "System.String" + "ResourceId": "System.String", + "PublicNetworkAccess": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -83745,7 +83841,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -83826,7 +83922,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -84243,7 +84339,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -84632,7 +84728,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -84713,7 +84809,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -85030,7 +85126,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -85333,7 +85429,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -85414,7 +85510,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -85735,7 +85831,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -86018,7 +86114,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Password": "System.Security.SecureString", "CredentialName": "System.String", @@ -86096,7 +86192,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -86413,7 +86509,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -86696,7 +86792,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Password": "System.Security.SecureString", "CredentialName": "System.String", @@ -86774,7 +86870,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -87133,7 +87229,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -87464,7 +87560,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Password": "System.Security.SecureString", "CredentialName": "System.String", @@ -87542,7 +87638,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Password": "System.Security.SecureString", "CredentialName": "System.String", @@ -87856,7 +87952,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Password": "System.Security.SecureString", "CredentialName": "System.String", @@ -88084,7 +88180,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Password": "System.Security.SecureString", "CredentialName": "System.String", @@ -88162,7 +88258,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Password": "System.Security.SecureString", "CredentialName": "System.String", @@ -88518,7 +88614,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Password": "System.Security.SecureString", "CredentialName": "System.String", @@ -88794,7 +88890,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreateTime": "System.Nullable`1[System.DateTime]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -88880,7 +88976,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -89279,7 +89375,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -89632,7 +89728,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreateTime": "System.Nullable`1[System.DateTime]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -89718,7 +89814,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreateTime": "System.Nullable`1[System.DateTime]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -90078,7 +90174,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreateTime": "System.Nullable`1[System.DateTime]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -90314,7 +90410,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel", "RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]", @@ -90400,7 +90496,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -90590,7 +90686,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -91519,7 +91615,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -92429,7 +92525,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -92797,7 +92893,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -92939,7 +93035,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -93359,7 +93455,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -94241,7 +94337,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -95286,7 +95382,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel", "RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]", @@ -95372,7 +95468,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel", "RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]", @@ -95549,7 +95645,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -96072,7 +96168,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -97446,7 +97542,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel", "RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]", @@ -97519,7 +97615,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -97985,7 +98081,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel", "RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]", @@ -98354,7 +98450,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel", "RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]", @@ -98819,7 +98915,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -100276,7 +100372,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -100359,7 +100455,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -101388,7 +101484,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -101574,7 +101670,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -101810,7 +101906,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -102775,7 +102871,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -102858,7 +102954,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -103967,7 +104063,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -104181,7 +104277,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -104419,7 +104515,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -105412,7 +105508,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]", "TargetGroupName": "System.String", @@ -105489,7 +105585,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -105806,7 +105902,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -106089,7 +106185,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]", "TargetGroupName": "System.String", @@ -106166,7 +106262,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -106483,7 +106579,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -106766,7 +106862,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]", "TargetGroupName": "System.String", @@ -106843,7 +106939,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]", "TargetGroupName": "System.String", @@ -107198,7 +107294,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]", "TargetGroupName": "System.String", @@ -107497,7 +107593,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MembershipType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobTargetGroupMembershipType]", "TargetGroupName": "System.String", @@ -107598,7 +107694,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]", "TargetGroupName": "System.String", @@ -108633,7 +108729,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]", "TargetGroupName": "System.String", @@ -108813,7 +108909,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]", "TargetGroupName": "System.String", @@ -109017,7 +109113,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]", "TargetGroupName": "System.String", @@ -109744,7 +109840,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MembershipType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobTargetGroupMembershipType]", "TargetGroupName": "System.String", @@ -109827,7 +109923,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]", "TargetGroupName": "System.String", @@ -110722,7 +110818,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]", "TargetGroupName": "System.String", @@ -110878,7 +110974,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]", "TargetGroupName": "System.String", @@ -111058,7 +111154,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]", "TargetGroupName": "System.String", @@ -111733,7 +111829,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel", "RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]", @@ -111819,7 +111915,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -112392,7 +112488,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -112532,7 +112628,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -112963,7 +113059,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel", "RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]", @@ -113049,7 +113145,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel", "RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]", @@ -113413,7 +113509,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel", "RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]", @@ -113649,7 +113745,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -113732,7 +113828,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -114049,7 +114145,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -114332,7 +114428,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -114415,7 +114511,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -114776,7 +114872,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -115081,7 +115177,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreateTime": "System.Nullable`1[System.DateTime]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -115167,7 +115263,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -115934,7 +116030,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -116224,7 +116320,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -116797,7 +116893,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreateTime": "System.Nullable`1[System.DateTime]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -116883,7 +116979,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreateTime": "System.Nullable`1[System.DateTime]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -117675,7 +117771,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreateTime": "System.Nullable`1[System.DateTime]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -117920,7 +118016,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreateTime": "System.Nullable`1[System.DateTime]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -118400,7 +118496,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreateTime": "System.Nullable`1[System.DateTime]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -118486,7 +118582,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreateTime": "System.Nullable`1[System.DateTime]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -119160,7 +119256,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreateTime": "System.Nullable`1[System.DateTime]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -119773,7 +119869,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "ServerName": "System.String", @@ -119882,7 +119978,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -120129,7 +120225,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "ServerName": "System.String", @@ -120518,7 +120614,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -120924,7 +121020,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "InstanceName": "System.String", @@ -121033,7 +121129,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -121253,7 +121349,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "InstanceName": "System.String", @@ -121642,7 +121738,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -122021,7 +122117,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "ServerName": "System.String", @@ -122130,7 +122226,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -122377,7 +122473,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "ServerName": "System.String", @@ -122766,7 +122862,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -123172,7 +123268,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "InstanceName": "System.String", @@ -123281,7 +123377,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -123501,7 +123597,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "InstanceName": "System.String", @@ -123890,7 +123986,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -124248,7 +124344,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "ServerName": "System.String", @@ -124358,7 +124454,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -124937,7 +125033,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -125127,7 +125223,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -125464,7 +125560,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "ServerName": "System.String", @@ -125574,7 +125670,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -125887,7 +125983,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -126152,7 +126248,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "InstanceName": "System.String", @@ -126262,7 +126358,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -126814,7 +126910,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -126977,7 +127073,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -127287,7 +127383,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "InstanceName": "System.String", @@ -127397,7 +127493,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -127683,7 +127779,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -127940,7 +128036,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "ServerName": "System.String", @@ -128049,7 +128145,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -128294,7 +128390,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "ServerName": "System.String", @@ -128683,7 +128779,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -129087,7 +129183,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "InstanceName": "System.String", @@ -129196,7 +129292,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -129414,7 +129510,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "InstanceName": "System.String", @@ -129803,7 +129899,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -130216,7 +130312,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "ServerName": "System.String", @@ -130325,7 +130421,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -130902,7 +130998,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -131188,7 +131284,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "ServerName": "System.String", @@ -131495,7 +131591,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "InstanceName": "System.String", @@ -131604,7 +131700,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -132154,7 +132250,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -132413,7 +132509,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "InstanceName": "System.String", @@ -132665,7 +132761,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -133002,7 +133098,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel+DatabaseState", "OperationId": "System.Guid", @@ -133373,7 +133469,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModelExpanded", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModelExpanded, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModelExpanded, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceTierAdvisor": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ServiceTierAdvisorProperties", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -134049,7 +134145,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -134294,7 +134390,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -134781,7 +134877,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -135351,7 +135447,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -135951,7 +136047,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -136358,7 +136454,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -136737,7 +136833,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -136946,7 +137042,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -137571,7 +137667,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -138043,7 +138139,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -138694,7 +138790,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel+DatabaseState", "OperationId": "System.Guid", @@ -139065,7 +139161,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackupExpirationTime": "System.Nullable`1[System.DateTime]", "BackupTime": "System.Nullable`1[System.DateTime]", @@ -139145,7 +139241,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -140190,7 +140286,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -140380,7 +140476,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -140649,7 +140745,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackupExpirationTime": "System.Nullable`1[System.DateTime]", "BackupTime": "System.Nullable`1[System.DateTime]", @@ -140765,7 +140861,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackupExpirationTime": "System.Nullable`1[System.DateTime]", "BackupTime": "System.Nullable`1[System.DateTime]", @@ -141125,7 +141221,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackupExpirationTime": "System.Nullable`1[System.DateTime]", "BackupTime": "System.Nullable`1[System.DateTime]", @@ -141427,7 +141523,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupShortTermRetentionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupShortTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupShortTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RetentionDays": "System.Int32", "ResourceGroupName": "System.String", @@ -141502,7 +141598,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -141731,7 +141827,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -142132,7 +142228,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LastAvailableBackupDate": "System.DateTime", "ResourceGroupName": "System.String", @@ -142407,7 +142503,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDeletedDatabaseBackupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDeletedDatabaseBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDeletedDatabaseBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationDate": "System.DateTime", "DeletionDate": "System.DateTime", @@ -142733,7 +142829,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupLongTermRetentionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupLongTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupLongTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "WeekOfYear": "System.Nullable`1[System.Int32]", "ResourceGroupName": "System.String", @@ -143011,7 +143107,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "State": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState", "Location": "System.String", @@ -143284,7 +143380,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RestorePointCreationDate": "System.Nullable`1[System.DateTime]", "EarliestRestoreDate": "System.Nullable`1[System.DateTime]", @@ -143560,7 +143656,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RestorePointCreationDate": "System.Nullable`1[System.DateTime]", "EarliestRestoreDate": "System.Nullable`1[System.DateTime]", @@ -143878,7 +143974,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RestorePointCreationDate": "System.Nullable`1[System.DateTime]", "EarliestRestoreDate": "System.Nullable`1[System.DateTime]", @@ -144238,7 +144334,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -147351,7 +147447,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupShortTermRetentionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupShortTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupShortTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RetentionDays": "System.Int32", "ResourceGroupName": "System.String", @@ -147444,7 +147540,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -147741,7 +147837,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -148170,7 +148266,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupLongTermRetentionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupLongTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupLongTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "WeekOfYear": "System.Nullable`1[System.Int32]", "ResourceGroupName": "System.String", @@ -149194,7 +149290,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "State": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState", "Location": "System.String", @@ -149251,7 +149347,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -149447,7 +149543,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -149679,7 +149775,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupShortTermRetentionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupShortTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupShortTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RetentionDays": "System.Int32", "DeletionDate": "System.Nullable`1[System.DateTime]", @@ -149760,7 +149856,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationDate": "System.Nullable`1[System.DateTime]", "EarliestRestorePoint": "System.Nullable`1[System.DateTime]", @@ -149963,7 +150059,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationDate": "System.Nullable`1[System.DateTime]", "EarliestRestorePoint": "System.Nullable`1[System.DateTime]", @@ -150421,7 +150517,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -150796,7 +150892,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -151171,7 +151267,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsUpToDate": "System.Nullable`1[System.Boolean]", "LastAliveTime": "System.Nullable`1[System.DateTime]", @@ -151471,7 +151567,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentLinkedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentLinkedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentLinkedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SeverName": "System.String", "DatabaseId": "System.String", @@ -151759,7 +151855,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel", "LastSyncTime": "System.Nullable`1[System.DateTime]", @@ -152108,7 +152204,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupLogModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupLogModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupLogModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TimeStamp": "System.Nullable`1[System.DateTime]", "LogLevel": "System.String", @@ -152572,7 +152668,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MemberDatabasePassword": "System.Security.SecureString", "ResourceId": "System.String", @@ -152969,7 +153065,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tables": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaTableModel]", "LastUpdateTime": "System.Nullable`1[System.DateTime]" @@ -153333,7 +153429,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsUpToDate": "System.Nullable`1[System.Boolean]", "LastAliveTime": "System.Nullable`1[System.DateTime]", @@ -154037,7 +154133,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentKeyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SyncAgentKey": "System.String" }, @@ -154306,7 +154402,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel", "LastSyncTime": "System.Nullable`1[System.DateTime]", @@ -154955,7 +155051,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MemberDatabasePassword": "System.Security.SecureString", "ResourceId": "System.String", @@ -156473,7 +156569,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsUpToDate": "System.Nullable`1[System.Boolean]", "LastAliveTime": "System.Nullable`1[System.DateTime]", @@ -156857,7 +156953,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel", "LastSyncTime": "System.Nullable`1[System.DateTime]", @@ -157290,7 +157386,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MemberDatabasePassword": "System.Security.SecureString", "ResourceId": "System.String", @@ -157771,7 +157867,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel", "LastSyncTime": "System.Nullable`1[System.DateTime]", @@ -158162,7 +158258,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel", "LastSyncTime": "System.Nullable`1[System.DateTime]", @@ -158553,7 +158649,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel", "LastSyncTime": "System.Nullable`1[System.DateTime]", @@ -159028,7 +159124,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MemberDatabasePassword": "System.Security.SecureString", "ResourceId": "System.String", @@ -159467,7 +159563,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel", "LastSyncTime": "System.Nullable`1[System.DateTime]", @@ -159896,7 +159992,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataMasking.Model", "Name": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DataMaskingState": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DataMaskingStateType", "DatabaseName": "System.String", @@ -160169,7 +160265,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataMasking.Model", "Name": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MaskingFunction": "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction", "NumberFrom": "System.Nullable`1[System.Double]", @@ -160575,7 +160671,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataMasking.Model", "Name": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MaskingFunction": "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction", "NumberFrom": "System.Nullable`1[System.Double]", @@ -161307,7 +161403,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataMasking.Model", "Name": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MaskingFunction": "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction", "NumberFrom": "System.Nullable`1[System.Double]", @@ -161797,7 +161893,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataMasking.Model", "Name": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DataMaskingState": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DataMaskingStateType", "DatabaseName": "System.String", @@ -162202,7 +162298,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataMasking.Model", "Name": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MaskingFunction": "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction", "NumberFrom": "System.Nullable`1[System.Double]", @@ -162934,7 +163030,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.DatabaseAuditModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.DatabaseAuditModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.DatabaseAuditModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AuditActionGroup": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", "BlobStorageTargetState": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditStateType", @@ -163055,7 +163151,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -163326,7 +163422,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -163543,7 +163639,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.ServerAuditModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.ServerAuditModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.ServerAuditModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AuditActionGroup": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", "BlobStorageTargetState": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditStateType", @@ -163644,7 +163740,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -163655,7 +163751,8 @@ "SqlAdministratorLogin": "System.String", "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", - "ResourceId": "System.String" + "ResourceId": "System.String", + "PublicNetworkAccess": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -163878,7 +163975,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -163889,7 +163986,8 @@ "SqlAdministratorLogin": "System.String", "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", - "ResourceId": "System.String" + "ResourceId": "System.String", + "PublicNetworkAccess": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -164161,7 +164259,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -164432,7 +164530,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -164704,7 +164802,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -164715,7 +164813,8 @@ "SqlAdministratorLogin": "System.String", "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", - "ResourceId": "System.String" + "ResourceId": "System.String", + "PublicNetworkAccess": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -164938,7 +165037,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -164949,7 +165048,8 @@ "SqlAdministratorLogin": "System.String", "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", - "ResourceId": "System.String" + "ResourceId": "System.String", + "PublicNetworkAccess": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -165167,7 +165267,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", "GenericTypeArguments": [], @@ -165469,7 +165569,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -165624,7 +165724,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", "GenericTypeArguments": [], @@ -166066,7 +166166,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", "GenericTypeArguments": [], @@ -166436,7 +166536,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -166558,7 +166658,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", "GenericTypeArguments": [], @@ -166954,7 +167054,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", "GenericTypeArguments": [], @@ -167220,7 +167320,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -167231,7 +167331,8 @@ "SqlAdministratorLogin": "System.String", "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", - "ResourceId": "System.String" + "ResourceId": "System.String", + "PublicNetworkAccess": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -167338,7 +167439,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", "GenericTypeArguments": [], @@ -167756,7 +167857,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", "GenericTypeArguments": [], @@ -168126,7 +168227,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -168137,7 +168238,8 @@ "SqlAdministratorLogin": "System.String", "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", - "ResourceId": "System.String" + "ResourceId": "System.String", + "PublicNetworkAccess": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -168193,7 +168295,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", "GenericTypeArguments": [], @@ -168570,7 +168672,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Model", "Name": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlDatabaseAdvisorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlDatabaseAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlDatabaseAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecommendedActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction]", "LastChecked": "System.Nullable`1[System.DateTime]", @@ -168954,7 +169056,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Model", "Name": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlElasticPoolAdvisorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlElasticPoolAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlElasticPoolAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecommendedActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction]", "LastChecked": "System.Nullable`1[System.DateTime]", @@ -169338,7 +169440,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Model", "Name": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlServerAdvisorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlServerAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlServerAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecommendedActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction]", "LastChecked": "System.Nullable`1[System.DateTime]", @@ -169675,7 +169777,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Model", "Name": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlDatabaseAdvisorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlDatabaseAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlDatabaseAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecommendedActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction]", "LastChecked": "System.Nullable`1[System.DateTime]", @@ -169777,7 +169879,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet", "Name": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -169997,7 +170099,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet", "Name": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -170229,7 +170331,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Model", "Name": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlElasticPoolAdvisorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlElasticPoolAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlElasticPoolAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecommendedActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction]", "LastChecked": "System.Nullable`1[System.DateTime]", @@ -170331,7 +170433,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet", "Name": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -170551,7 +170653,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet", "Name": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -170783,7 +170885,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Model", "Name": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlServerAdvisorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlServerAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlServerAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecommendedActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction]", "LastChecked": "System.Nullable`1[System.DateTime]", @@ -170880,7 +170982,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet", "Name": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -171082,7 +171184,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet", "Name": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -171290,7 +171392,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model", "Name": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsEnabled": "System.Boolean", "ManagedInstanceName": "System.String", @@ -171345,7 +171447,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -171492,7 +171594,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -171761,7 +171863,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model", "Name": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedDataSecurityPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsEnabled": "System.Boolean", "ServerName": "System.String", @@ -171816,7 +171918,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -171827,7 +171929,8 @@ "SqlAdministratorLogin": "System.String", "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", - "ResourceId": "System.String" + "ResourceId": "System.String", + "PublicNetworkAccess": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -171952,7 +172055,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -171963,7 +172066,8 @@ "SqlAdministratorLogin": "System.String", "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", - "ResourceId": "System.String" + "ResourceId": "System.String", + "PublicNetworkAccess": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -172212,7 +172316,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model", "Name": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsEnabled": "System.Boolean", "ManagedInstanceName": "System.String", @@ -172321,7 +172425,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -172632,7 +172736,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -172881,7 +172985,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model", "Name": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedDataSecurityPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsEnabled": "System.Boolean", "ServerName": "System.String", @@ -172990,7 +173094,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -173001,7 +173105,8 @@ "SqlAdministratorLogin": "System.String", "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", - "ResourceId": "System.String" + "ResourceId": "System.String", + "PublicNetworkAccess": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -173290,7 +173395,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -173301,7 +173406,8 @@ "SqlAdministratorLogin": "System.String", "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", - "ResourceId": "System.String" + "ResourceId": "System.String", + "PublicNetworkAccess": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -173530,7 +173636,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model", "Name": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsEnabled": "System.Boolean", "ManagedInstanceName": "System.String", @@ -173585,7 +173691,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -173732,7 +173838,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -174001,7 +174107,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model", "Name": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedDataSecurityPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsEnabled": "System.Boolean", "ServerName": "System.String", @@ -174056,7 +174162,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -174067,7 +174173,8 @@ "SqlAdministratorLogin": "System.String", "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", - "ResourceId": "System.String" + "ResourceId": "System.String", + "PublicNetworkAccess": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -174192,7 +174299,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -174203,7 +174310,8 @@ "SqlAdministratorLogin": "System.String", "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", - "ResourceId": "System.String" + "ResourceId": "System.String", + "PublicNetworkAccess": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -174583,7 +174691,7 @@ "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -174751,7 +174859,7 @@ "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -174763,7 +174871,7 @@ "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -175251,7 +175359,7 @@ "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -175346,7 +175454,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -175358,7 +175466,7 @@ "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Code": "System.String", "Message": "System.String" @@ -175403,7 +175511,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -175415,7 +175523,7 @@ "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Result": "System.Collections.Generic.IList`1[System.String]" }, @@ -175538,7 +175646,7 @@ "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.ServerKeyType": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.ServerKeyType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.ServerKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.ServerKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -175633,7 +175741,7 @@ "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.ServerKeyType", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -175714,7 +175822,7 @@ "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -175809,7 +175917,7 @@ "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceTransparentDataEncryptionProtectorModel": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceTransparentDataEncryptionProtectorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType", "ResourceGroupName": "System.String", @@ -175906,7 +176014,7 @@ "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -176001,7 +176109,7 @@ "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionActivityStatusType": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionActivityStatusType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionActivityStatusType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionActivityStatusType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -176096,7 +176204,7 @@ "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType": { "Namespace": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model", "Name": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -176324,7 +176432,7 @@ "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel+ServerKeyType": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel+ServerKeyType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel+ServerKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel+ServerKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -176419,7 +176527,7 @@ "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationActivityModel+ServerDisasterRecoveryConfigurationState": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationActivityModel+ServerDisasterRecoveryConfigurationState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationActivityModel+ServerDisasterRecoveryConfigurationState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationActivityModel+ServerDisasterRecoveryConfigurationState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Current": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Requested": "System.Collections.Generic.IDictionary`2[System.String,System.String]" @@ -176464,7 +176572,7 @@ "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections": { "Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model", "Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -176838,7 +176946,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -176850,7 +176958,7 @@ "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel": { "Namespace": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model", "Name": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SupportedEditions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel]", "Status": "System.String", @@ -176896,7 +177004,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -176908,7 +177016,7 @@ "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel": { "Namespace": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model", "Name": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SupportedServiceObjectives": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel]", "Status": "System.String", @@ -176954,7 +177062,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -176966,7 +177074,7 @@ "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel": { "Namespace": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model", "Name": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SupportedMaxSizes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeRangeCapabilityModel]", "Id": "System.Nullable`1[System.Guid]", @@ -177013,7 +177121,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeRangeCapabilityModel]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeRangeCapabilityModel]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeRangeCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeRangeCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -177025,7 +177133,7 @@ "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeRangeCapabilityModel": { "Namespace": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model", "Name": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeRangeCapabilityModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeRangeCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeRangeCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MinValue": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeCapabilityModel", "MaxValue": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeCapabilityModel", @@ -177073,7 +177181,7 @@ "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeCapabilityModel": { "Namespace": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model", "Name": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeCapabilityModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Limit": "System.Nullable`1[System.Int32]", "Unit": "System.String", @@ -177344,7 +177452,7 @@ "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -177439,7 +177547,7 @@ "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -177691,7 +177799,7 @@ "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -177918,7 +178026,7 @@ "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel": { "Namespace": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model", "Name": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SubscriptionId": "System.Nullable`1[System.Guid]", "Credential": "System.String", @@ -177969,7 +178077,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -177981,7 +178089,7 @@ "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MembershipType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobTargetGroupMembershipType]", "TargetGroupName": "System.String", @@ -178144,7 +178252,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -178156,7 +178264,7 @@ "Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SchemaName": "System.String", "TableName": "System.String", @@ -178206,7 +178314,7 @@ "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel+DatabaseState": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel+DatabaseState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel+DatabaseState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel+DatabaseState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Current": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Requested": "System.Collections.Generic.IDictionary`2[System.String,System.String]" @@ -178376,7 +178484,7 @@ "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -178471,7 +178579,7 @@ "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tables": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel]", "MasterSyncMemberName": "System.String" @@ -178531,7 +178639,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -178543,7 +178651,7 @@ "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Columns": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel]", "QuotedName": "System.String" @@ -178603,7 +178711,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -178615,7 +178723,7 @@ "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "QuotedName": "System.String", "DataSize": "System.String", @@ -178836,7 +178944,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaTableModel]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaTableModel]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaTableModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaTableModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -178848,7 +178956,7 @@ "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaTableModel": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaTableModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaTableModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaTableModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HasError": "System.Boolean", "Columns": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel]", @@ -178906,7 +179014,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -178918,7 +179026,7 @@ "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HasError": "System.Boolean", "IsPrimaryKey": "System.Boolean", @@ -178978,7 +179086,7 @@ "Microsoft.Azure.Commands.Sql.DataMasking.Model.DataMaskingStateType": { "Namespace": "Microsoft.Azure.Commands.Sql.DataMasking.Model", "Name": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DataMaskingStateType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DataMaskingStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DataMaskingStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -179073,7 +179181,7 @@ "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction": { "Namespace": "Microsoft.Azure.Commands.Sql.DataMasking.Model", "Name": "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -179168,7 +179276,7 @@ "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", "GenericTypeArguments": [], @@ -179178,7 +179286,7 @@ "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -179273,7 +179381,7 @@ "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditStateType": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditStateType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -179368,7 +179476,7 @@ "Microsoft.Azure.Commands.Sql.Auditing.Model.StorageKeyKind": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.StorageKeyKind", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.StorageKeyKind, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.StorageKeyKind, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll.json index 7fb540283789..a5e411b7743b 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll.json @@ -14,7 +14,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHold", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHold, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHold, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HasLegalHold": "System.Nullable`1[System.Boolean]", "Tags": "System.String[]" @@ -132,7 +132,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -230,7 +230,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -571,7 +571,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -743,7 +743,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -1004,7 +1004,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSDeleteRetentionPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSDeleteRetentionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSDeleteRetentionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Nullable`1[System.Boolean]", "Days": "System.Nullable`1[System.Int32]" @@ -1112,7 +1112,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -1404,7 +1404,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -1743,7 +1743,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobServiceProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobServiceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobServiceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Cors": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRules", "DeleteRetentionPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSDeleteRetentionPolicy", @@ -1867,7 +1867,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -2205,7 +2205,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -2622,7 +2622,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobServiceProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobServiceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobServiceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Cors": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRules", "DeleteRetentionPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSDeleteRetentionPolicy", @@ -2746,7 +2746,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -2996,7 +2996,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -3263,7 +3263,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -3414,7 +3414,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -3735,7 +3735,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -4036,9 +4036,10 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "ImmutabilityPeriodSinceCreationInDays": "System.Int32", + "AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]", + "ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]", "State": "System.String", "Id": "System.String", "Name": "System.String", @@ -4157,7 +4158,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -4255,7 +4256,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -4598,7 +4599,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -4772,7 +4773,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -5037,9 +5038,10 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "ImmutabilityPeriodSinceCreationInDays": "System.Int32", + "AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]", + "ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]", "State": "System.String", "Id": "System.String", "Name": "System.String", @@ -5158,7 +5160,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -5256,7 +5258,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -5390,9 +5392,10 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "ImmutabilityPeriodSinceCreationInDays": "System.Int32", + "AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]", + "ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]", "State": "System.String", "Id": "System.String", "Name": "System.String", @@ -5705,7 +5708,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -5903,7 +5906,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -6117,9 +6120,10 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "ImmutabilityPeriodSinceCreationInDays": "System.Int32", + "AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]", + "ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]", "State": "System.String", "Id": "System.String", "Name": "System.String", @@ -6328,7 +6332,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -6479,7 +6483,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -6598,7 +6602,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6835,7 +6839,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7012,7 +7016,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -7143,7 +7147,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7347,7 +7351,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7609,7 +7613,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -7709,7 +7713,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -8092,7 +8096,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -8290,7 +8294,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -8599,9 +8603,10 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "ImmutabilityPeriodSinceCreationInDays": "System.Int32", + "AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]", + "ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]", "State": "System.String", "Id": "System.String", "Name": "System.String", @@ -8720,7 +8725,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -8818,7 +8823,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -8952,9 +8957,10 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "ImmutabilityPeriodSinceCreationInDays": "System.Int32", + "AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]", + "ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]", "State": "System.String", "Id": "System.String", "Name": "System.String", @@ -9225,7 +9231,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -9399,7 +9405,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -9589,9 +9595,10 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "ImmutabilityPeriodSinceCreationInDays": "System.Int32", + "AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]", + "ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]", "State": "System.String", "Id": "System.String", "Name": "System.String", @@ -9752,7 +9759,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHold", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHold, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHold, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HasLegalHold": "System.Nullable`1[System.Boolean]", "Tags": "System.String[]" @@ -9870,7 +9877,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -9968,7 +9975,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -10309,7 +10316,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -10481,7 +10488,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -10742,9 +10749,10 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "ImmutabilityPeriodSinceCreationInDays": "System.Int32", + "AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]", + "ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]", "State": "System.String", "Id": "System.String", "Name": "System.String", @@ -10863,7 +10871,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -10961,7 +10969,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -11075,9 +11083,10 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "ImmutabilityPeriodSinceCreationInDays": "System.Int32", + "AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]", + "ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]", "State": "System.String", "Id": "System.String", "Name": "System.String", @@ -11151,6 +11160,24 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "AllowProtectedAppendWrite", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "Etag", "AliasList": [ @@ -11305,14 +11332,14 @@ }, { "ParameterMetadata": { - "Name": "Etag", + "Name": "ImmutabilityPeriod", "AliasList": [ - "IfMatch" + "ImmutabilityPeriodSinceCreationInDays" ], "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11331,14 +11358,38 @@ }, { "ParameterMetadata": { - "Name": "ImmutabilityPeriod", + "Name": "AllowProtectedAppendWrite", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Etag", "AliasList": [ - "ImmutabilityPeriodSinceCreationInDays" + "IfMatch" ], "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11350,7 +11401,7 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -11477,14 +11528,14 @@ }, { "ParameterMetadata": { - "Name": "Etag", + "Name": "ImmutabilityPeriod", "AliasList": [ - "IfMatch" + "ImmutabilityPeriodSinceCreationInDays" ], "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11503,12 +11554,14 @@ }, { "ParameterMetadata": { - "Name": "ExtendPolicy", - "AliasList": [], + "Name": "Etag", + "AliasList": [ + "IfMatch" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11527,14 +11580,12 @@ }, { "ParameterMetadata": { - "Name": "ImmutabilityPeriod", - "AliasList": [ - "ImmutabilityPeriodSinceCreationInDays" - ], + "Name": "ExtendPolicy", + "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11628,7 +11679,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -11727,14 +11778,14 @@ }, { "ParameterMetadata": { - "Name": "Etag", + "Name": "ImmutabilityPeriod", "AliasList": [ - "IfMatch" + "ImmutabilityPeriodSinceCreationInDays" ], "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11753,14 +11804,38 @@ }, { "ParameterMetadata": { - "Name": "ImmutabilityPeriod", + "Name": "AllowProtectedAppendWrite", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Etag", "AliasList": [ - "ImmutabilityPeriodSinceCreationInDays" + "IfMatch" ], "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11772,7 +11847,7 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -11854,7 +11929,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -11953,14 +12028,14 @@ }, { "ParameterMetadata": { - "Name": "Etag", + "Name": "ImmutabilityPeriod", "AliasList": [ - "IfMatch" + "ImmutabilityPeriodSinceCreationInDays" ], "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11979,12 +12054,14 @@ }, { "ParameterMetadata": { - "Name": "ExtendPolicy", - "AliasList": [], + "Name": "Etag", + "AliasList": [ + "IfMatch" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12003,14 +12080,12 @@ }, { "ParameterMetadata": { - "Name": "ImmutabilityPeriod", - "AliasList": [ - "ImmutabilityPeriodSinceCreationInDays" - ], + "Name": "ExtendPolicy", + "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12078,7 +12153,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -12191,14 +12266,14 @@ }, { "ParameterMetadata": { - "Name": "Etag", + "Name": "ImmutabilityPeriod", "AliasList": [ - "IfMatch" + "ImmutabilityPeriodSinceCreationInDays" ], "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12217,14 +12292,38 @@ }, { "ParameterMetadata": { - "Name": "ImmutabilityPeriod", + "Name": "AllowProtectedAppendWrite", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Etag", "AliasList": [ - "ImmutabilityPeriodSinceCreationInDays" + "IfMatch" ], "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12236,7 +12335,7 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -12292,7 +12391,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -12405,14 +12504,14 @@ }, { "ParameterMetadata": { - "Name": "Etag", + "Name": "ImmutabilityPeriod", "AliasList": [ - "IfMatch" + "ImmutabilityPeriodSinceCreationInDays" ], "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12431,12 +12530,14 @@ }, { "ParameterMetadata": { - "Name": "ExtendPolicy", - "AliasList": [], + "Name": "Etag", + "AliasList": [ + "IfMatch" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12455,14 +12556,12 @@ }, { "ParameterMetadata": { - "Name": "ImmutabilityPeriod", - "AliasList": [ - "ImmutabilityPeriodSinceCreationInDays" - ], + "Name": "ExtendPolicy", + "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12532,9 +12631,10 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "ImmutabilityPeriodSinceCreationInDays": "System.Int32", + "AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]", + "ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]", "State": "System.String", "Id": "System.String", "Name": "System.String", @@ -12614,7 +12714,31 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AllowProtectedAppendWrite", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -12672,9 +12796,10 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "ImmutabilityPeriodSinceCreationInDays": "System.Int32", + "AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]", + "ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]", "State": "System.String", "Id": "System.String", "Name": "System.String", @@ -12735,12 +12860,14 @@ }, { "ParameterMetadata": { - "Name": "ExtendPolicy", - "AliasList": [], + "Name": "ImmutabilityPeriod", + "AliasList": [ + "ImmutabilityPeriodSinceCreationInDays" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12759,14 +12886,12 @@ }, { "ParameterMetadata": { - "Name": "ImmutabilityPeriod", - "AliasList": [ - "ImmutabilityPeriodSinceCreationInDays" - ], + "Name": "ExtendPolicy", + "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12827,32 +12952,6 @@ { "Name": "__AllParameterSets", "Parameters": [ - { - "ParameterMetadata": { - "Name": "ImmutabilityPeriod", - "AliasList": [ - "ImmutabilityPeriodSinceCreationInDays" - ], - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -12911,7 +13010,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobServiceProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobServiceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobServiceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Cors": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRules", "DeleteRetentionPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSDeleteRetentionPolicy", @@ -13035,7 +13134,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -13327,7 +13426,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -13666,7 +13765,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -13838,7 +13937,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -13938,7 +14037,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -14050,7 +14149,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14287,7 +14386,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14491,7 +14590,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -14595,7 +14694,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14774,7 +14873,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -14892,7 +14991,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15069,7 +15168,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15253,7 +15352,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "LastModifiedTime": "System.Nullable`1[System.DateTime]", @@ -15397,7 +15496,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -15694,7 +15793,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -16042,7 +16141,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "LastModifiedTime": "System.Nullable`1[System.DateTime]", @@ -16186,7 +16285,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -16553,7 +16652,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -16984,7 +17083,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -17102,7 +17201,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "LastModifiedTime": "System.Nullable`1[System.DateTime]", @@ -17478,7 +17577,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -17792,7 +17891,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "LastModifiedTime": "System.Nullable`1[System.DateTime]", @@ -18094,7 +18193,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "LastModifiedTime": "System.Nullable`1[System.DateTime]", @@ -18259,7 +18358,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -18377,7 +18476,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "LastModifiedTime": "System.Nullable`1[System.DateTime]", @@ -18757,7 +18856,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -19075,7 +19174,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSShare, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "LastModifiedTime": "System.Nullable`1[System.DateTime]", @@ -19381,7 +19480,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob", "Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot" @@ -19528,7 +19627,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob", "Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot" @@ -19687,7 +19786,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob", "Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot" @@ -19855,7 +19954,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob", "Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot" @@ -19973,7 +20072,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob", "Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot" @@ -20098,7 +20197,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20140,7 +20239,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20225,7 +20324,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule", "GenericTypeArguments": [], @@ -20243,7 +20342,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule", "GenericTypeArguments": [], @@ -20476,7 +20575,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule", "GenericTypeArguments": [], @@ -20619,7 +20718,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule", "GenericTypeArguments": [], @@ -21058,7 +21157,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -21744,7 +21843,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]", "LastModifiedTime": "System.Nullable`1[System.DateTime]", @@ -21877,7 +21976,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -22176,7 +22275,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -22375,7 +22474,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", "DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum", @@ -22731,7 +22830,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -23055,7 +23154,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", "DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum", @@ -23674,7 +23773,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", "DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum", @@ -24357,7 +24456,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrefixMatch": "System.String[]", "BlobTypes": "System.String[]" @@ -24578,7 +24677,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Definition": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyDefinition", "Enabled": "System.Nullable`1[System.Boolean]", @@ -24704,7 +24803,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob", "Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot" @@ -24772,7 +24871,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrefixMatch": "System.String[]", "BlobTypes": "System.String[]" @@ -24947,7 +25046,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob", "Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot" @@ -25021,7 +25120,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrefixMatch": "System.String[]", "BlobTypes": "System.String[]" @@ -25506,7 +25605,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -25624,7 +25723,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]", "LastModifiedTime": "System.Nullable`1[System.DateTime]", @@ -25875,7 +25974,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -26141,7 +26240,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]", "LastModifiedTime": "System.Nullable`1[System.DateTime]", @@ -26366,7 +26465,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26408,7 +26507,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26493,7 +26592,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule", "GenericTypeArguments": [], @@ -26511,7 +26610,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule", "GenericTypeArguments": [], @@ -26744,7 +26843,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule", "GenericTypeArguments": [], @@ -26887,7 +26986,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule", "GenericTypeArguments": [], @@ -27386,7 +27485,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -27682,7 +27781,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -28372,7 +28471,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -28761,7 +28860,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", "DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum", @@ -29307,7 +29406,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", "DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum", @@ -29912,7 +30011,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", "DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum", @@ -30589,7 +30688,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", "DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum", @@ -30917,7 +31016,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]", "LastModifiedTime": "System.Nullable`1[System.DateTime]", @@ -31032,7 +31131,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -31148,7 +31247,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule", "GenericTypeArguments": [], @@ -31168,7 +31267,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]", "LastModifiedTime": "System.Nullable`1[System.DateTime]", @@ -31333,7 +31432,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule", "GenericTypeArguments": [], @@ -31453,7 +31552,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]", "LastModifiedTime": "System.Nullable`1[System.DateTime]", @@ -31579,7 +31678,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -31683,7 +31782,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule", "GenericTypeArguments": [], @@ -31751,7 +31850,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -31857,7 +31956,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]", "LastModifiedTime": "System.Nullable`1[System.DateTime]", @@ -32007,7 +32106,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule", "GenericTypeArguments": [], @@ -32101,7 +32200,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]", "LastModifiedTime": "System.Nullable`1[System.DateTime]", @@ -32278,7 +32377,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", "DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum", @@ -32493,7 +32592,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -32596,7 +32695,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -32699,7 +32798,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule", "GenericTypeArguments": [], @@ -32717,7 +32816,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule", "GenericTypeArguments": [], @@ -32843,7 +32942,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -32952,7 +33051,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -33061,7 +33160,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule", "GenericTypeArguments": [], @@ -33085,7 +33184,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule", "GenericTypeArguments": [], @@ -33395,7 +33494,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSUsage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSUsage, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSUsage, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Unit": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.UsageUnit]", "CurrentValue": "System.Nullable`1[System.Int32]", @@ -33767,7 +33866,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DirectoryServiceOptions": "System.String" }, @@ -33816,7 +33915,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UseSubDomain": "System.Nullable`1[System.Boolean]", "Name": "System.String" @@ -33945,7 +34044,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSGeoReplicationStats, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CanFailover": "System.Nullable`1[System.Boolean]", "LastSyncTime": "System.Nullable`1[System.DateTime]", @@ -34023,7 +34122,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", "DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum", @@ -34190,7 +34289,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule", "GenericTypeArguments": [], @@ -34200,7 +34299,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -34236,7 +34335,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -34341,7 +34440,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[]": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule", "GenericTypeArguments": [], @@ -34351,7 +34450,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -34387,7 +34486,7 @@ "System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -34399,7 +34498,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -34494,7 +34593,7 @@ "System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleActionEnum]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleActionEnum]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleActionEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleActionEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -34506,7 +34605,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleActionEnum": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleActionEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleActionEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleActionEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -35141,7 +35240,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSSku": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSSku, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Restrictions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Storage.Models.Restriction]", "Capabilities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Storage.Models.SKUCapability]", @@ -36428,7 +36527,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "AzureFilesIdentityBasedAuth": "Microsoft.Azure.Commands.Management.Storage.Models.PSAzureFilesIdentityBasedAuthentication", @@ -36518,10 +36617,11 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UpdateHistory": "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty[]", - "ImmutabilityPeriodSinceCreationInDays": "System.Int32", + "AllowProtectedAppendWrites": "System.Nullable`1[System.Boolean]", + "ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]", "State": "System.String", "Etag": "System.String" }, @@ -36570,7 +36670,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty[]": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty", "GenericTypeArguments": [], @@ -36580,7 +36680,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Timestamp": "System.Nullable`1[System.DateTime]", "ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]", @@ -36646,7 +36746,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty[]", "HasLegalHold": "System.Nullable`1[System.Boolean]" @@ -36696,7 +36796,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty[]": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty", "GenericTypeArguments": [], @@ -36706,7 +36806,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Timestamp": "System.Nullable`1[System.DateTime]", "Tag": "System.String", @@ -36759,7 +36859,7 @@ "System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -36771,7 +36871,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -37085,7 +37185,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRules": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRules", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRules, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRules, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CorsRulesProperty": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRule[]" }, @@ -37144,7 +37244,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRule[]": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRule", "GenericTypeArguments": [], @@ -37154,7 +37254,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRule": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MaxAgeInSeconds": "System.Int32", "AllowedOrigins": "System.String[]", @@ -37362,7 +37462,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSDeleteRetentionPolicy": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSDeleteRetentionPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSDeleteRetentionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSDeleteRetentionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Nullable`1[System.Boolean]", "Days": "System.Nullable`1[System.Int32]" @@ -37427,7 +37527,9 @@ "ChangeFeed": "Microsoft.Azure.Management.Storage.Models.ChangeFeed", "Cors": "Microsoft.Azure.Management.Storage.Models.CorsRules", "DeleteRetentionPolicy": "Microsoft.Azure.Management.Storage.Models.DeleteRetentionPolicy", + "RestorePolicy": "Microsoft.Azure.Management.Storage.Models.RestorePolicyProperties", "Sku": "Microsoft.Azure.Management.Storage.Models.Sku", + "IsVersioningEnabled": "System.Nullable`1[System.Boolean]", "AutomaticSnapshotPolicyEnabled": "System.Nullable`1[System.Boolean]", "DefaultServiceVersion": "System.String", "Id": "System.String", @@ -37502,6 +37604,10 @@ "Name": "deleteRetentionPolicy", "Type": "System.Reflection.RuntimeParameterInfo" }, + { + "Name": "isVersioningEnabled", + "Type": "System.Reflection.RuntimeParameterInfo" + }, { "Name": "automaticSnapshotPolicyEnabled", "Type": "System.Reflection.RuntimeParameterInfo" @@ -37510,6 +37616,10 @@ "Name": "changeFeed", "Type": "System.Reflection.RuntimeParameterInfo" }, + { + "Name": "restorePolicy", + "Type": "System.Reflection.RuntimeParameterInfo" + }, { "Name": "sku", "Type": "System.Reflection.RuntimeParameterInfo" @@ -37572,10 +37682,74 @@ } ] }, + "Microsoft.Azure.Management.Storage.Models.RestorePolicyProperties": { + "Namespace": "Microsoft.Azure.Management.Storage.Models", + "Name": "Microsoft.Azure.Management.Storage.Models.RestorePolicyProperties", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.RestorePolicyProperties, Microsoft.Azure.Management.Storage, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Enabled": "System.Boolean", + "Days": "System.Nullable`1[System.Int32]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Validate", + "Parameters": [], + "ReturnType": "System.Void" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "enabled", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "days", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TierToCool": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterModification", "TierToArchive": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterModification", @@ -37636,7 +37810,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterModification": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterModification", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterModification, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterModification, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DaysAfterModificationGreaterThan": "System.Int32" }, @@ -37828,7 +38002,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Delete": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterCreation" }, @@ -37887,7 +38061,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterCreation": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterCreation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterCreation, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterCreation, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DaysAfterCreationGreaterThan": "System.Int32" }, @@ -38240,7 +38414,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule", "GenericTypeArguments": [], @@ -38250,7 +38424,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Definition": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyDefinition", "Enabled": "System.Nullable`1[System.Boolean]", @@ -38331,7 +38505,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyDefinition": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Actions": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup", "Filters": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter" @@ -38401,7 +38575,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob", "Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot" @@ -38461,7 +38635,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrefixMatch": "System.String[]", "BlobTypes": "System.String[]" diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Tags.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Tags.dll.json index 6e42e972eacb..5e87691507c6 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Tags.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Tags.dll.json @@ -100,6 +100,24 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, { "Name": "DefaultProfile", "AliasList": [ @@ -136,7 +154,7 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "GetPredefinedTagParameterSet", "Parameters": [ { "ParameterMetadata": { @@ -226,6 +244,118 @@ "ValueFromPipelineByPropertyName": false } ] + }, + { + "Name": "GetByResourceIdParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] } ], "AliasList": [] @@ -235,7 +365,7 @@ "NounName": "AzTag", "Name": "New-AzTag", "ClassName": "Microsoft.Azure.Commands.Tags.Tag.NewAzureTagCommand", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -291,6 +421,59 @@ "ParameterSets": [ "__AllParameterSets" ] + }, + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Tags.Model", + "Name": "Microsoft.Azure.Commands.Tags.Model.PSTagResource", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Tags.Model.PSTagResource, Microsoft.Azure.PowerShell.Cmdlets.Tags, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Properties": "Microsoft.Azure.Commands.Tags.Model.PSTagsObject", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "PropertiesTable": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] } ], "Parameters": [ @@ -330,6 +513,42 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, + { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Tag", + "AliasList": [], + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, { "Name": "DefaultProfile", "AliasList": [ @@ -366,11 +585,650 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "CreatePredefinedTagParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Value", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "CreateByResourceIdParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Tag", + "AliasList": [], + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Remove", + "NounName": "AzTag", + "Name": "Remove-AzTag", + "ClassName": "Microsoft.Azure.Commands.Tags.Tag.RemoveAzureTagCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.ResourceManager.Common.Tags", + "Name": "Microsoft.Azure.Commands.ResourceManager.Common.Tags.PSTag", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Common.Tags.PSTag, Microsoft.Azure.PowerShell.Clients.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Values": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.ResourceManager.Common.Tags.PSTagValue]", + "Name": "System.String", + "ValuesTable": "System.String", + "Count": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + }, + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Tags.Model", + "Name": "Microsoft.Azure.Commands.Tags.Model.PSTagResource", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Tags.Model.PSTagResource, Microsoft.Azure.PowerShell.Cmdlets.Tags, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Properties": "Microsoft.Azure.Commands.Tags.Model.PSTagsObject", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "PropertiesTable": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Value", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "RemovePredefinedTagParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Value", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "RemoveByResourceIdParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "ResourceId", "AliasList": [], "Type": { "Namespace": "System", @@ -388,18 +1246,18 @@ "ValidateNotNullOrEmpty": true }, "Mandatory": true, - "Position": 0, + "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Value", + "Name": "PassThru", "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -409,10 +1267,10 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, - "Position": 1, + "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, @@ -461,10 +1319,10 @@ "AliasList": [] }, { - "VerbName": "Remove", + "VerbName": "Update", "NounName": "AzTag", - "Name": "Remove-AzTag", - "ClassName": "Microsoft.Azure.Commands.Tags.Tag.RemoveAzureTagCommand", + "Name": "Update-AzTag", + "ClassName": "Microsoft.Azure.Commands.Tags.Tag.UpdateAzureTagCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -472,14 +1330,15 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.Commands.ResourceManager.Common.Tags", - "Name": "Microsoft.Azure.Commands.ResourceManager.Common.Tags.PSTag", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Common.Tags.PSTag, Microsoft.Azure.PowerShell.Clients.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Tags.Model", + "Name": "Microsoft.Azure.Commands.Tags.Model.PSTagResource", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Tags.Model.PSTagResource, Microsoft.Azure.PowerShell.Cmdlets.Tags, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "Values": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.ResourceManager.Common.Tags.PSTagValue]", + "Properties": "Microsoft.Azure.Commands.Tags.Model.PSTagsObject", + "Id": "System.String", "Name": "System.String", - "ValuesTable": "System.String", - "Count": "System.String" + "Type": "System.String", + "PropertiesTable": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -525,7 +1384,7 @@ ], "Parameters": [ { - "Name": "Name", + "Name": "ResourceId", "AliasList": [], "Type": { "Namespace": "System", @@ -543,14 +1402,14 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Value", + "Name": "Tag", "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, - "ElementType": "System.String", + "ElementType": null, "GenericTypeArguments": [], "Methods": [], "Constructors": [] @@ -561,22 +1420,107 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "PassThru", + "Name": "Operation", "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Tags.Model", + "Name": "Microsoft.Azure.Commands.Tags.Model.TagPatchOperation", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Tags.Model.TagPatchOperation, Microsoft.Azure.PowerShell.Cmdlets.Tags, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], "Constructors": [] }, "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { "Name": "DefaultProfile", @@ -614,11 +1558,11 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "UpdateByResourceIdParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "ResourceId", "AliasList": [], "Type": { "Namespace": "System", @@ -642,14 +1586,14 @@ }, { "ParameterMetadata": { - "Name": "Value", + "Name": "Tag", "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, - "ElementType": "System.String", + "ElementType": null, "GenericTypeArguments": [], "Methods": [], "Constructors": [] @@ -659,23 +1603,147 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": 1, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "Operation", "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Tags.Model", + "Name": "Microsoft.Azure.Commands.Tags.Model.TagPatchOperation", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Tags.Model.TagPatchOperation, Microsoft.Azure.PowerShell.Cmdlets.Tags, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], "Constructors": [] }, "ValidateSet": [], @@ -686,8 +1754,13 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { "Name": "DefaultProfile", @@ -1130,6 +2203,65 @@ ], "Methods": [], "Constructors": [] + }, + "Microsoft.Azure.Commands.Tags.Model.PSTagsObject": { + "Namespace": "Microsoft.Azure.Commands.Tags.Model", + "Name": "Microsoft.Azure.Commands.Tags.Model.PSTagsObject", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Tags.Model.PSTagsObject, Microsoft.Azure.PowerShell.Cmdlets.Tags, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "TagsProperty": "System.Collections.Generic.IDictionary`2[System.String,System.String]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "tagsProperty", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "System.TypeCode": { + "Namespace": "System", + "Name": "System.TypeCode", + "AssemblyQualifiedName": "System.TypeCode, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] } } } diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Websites.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Websites.dll.json index d6f866dc5cd7..c654d8e38431 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Websites.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Websites.dll.json @@ -14,7 +14,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -179,7 +179,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -512,7 +512,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -832,7 +832,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -1073,7 +1073,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -1537,7 +1537,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -2098,7 +2098,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -2524,7 +2524,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -2985,7 +2985,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -3228,7 +3228,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -3411,7 +3411,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -3854,7 +3854,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -4429,7 +4429,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -4834,7 +4834,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -5122,7 +5122,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -5387,7 +5387,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -5598,7 +5598,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -5763,7 +5763,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -6028,7 +6028,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -6239,7 +6239,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -6769,7 +6769,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[], Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[], Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath", "GenericTypeArguments": [], @@ -6843,6 +6843,24 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "HostNames", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, { "Name": "ResourceGroupName", "AliasList": [], @@ -6903,7 +6921,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -7653,7 +7671,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[], Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[], Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath", "GenericTypeArguments": [], @@ -7750,6 +7768,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "HostNames", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ResourceGroupName", @@ -8262,7 +8304,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -9019,7 +9061,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -9496,7 +9538,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -9759,7 +9801,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -9924,7 +9966,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -10189,7 +10231,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -10400,7 +10442,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -10565,7 +10607,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -10830,7 +10872,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -11096,7 +11138,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -11172,7 +11214,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -11369,7 +11411,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -11561,7 +11603,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -11657,7 +11699,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -11821,7 +11863,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -11926,7 +11968,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Cmdlets.BackupRestore", "Name": "Microsoft.Azure.Commands.WebApps.Cmdlets.BackupRestore.AzureWebAppSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.BackupRestore.AzureWebAppSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.BackupRestore.AzureWebAppSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SnapshotTime": "System.DateTime", "ResourceGroupName": "System.String", @@ -12054,7 +12096,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -12411,7 +12453,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -12943,7 +12985,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -14011,7 +14053,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -14464,7 +14506,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -14848,7 +14890,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -15349,7 +15391,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -15612,7 +15654,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile", "Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription", @@ -16005,7 +16047,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile", "Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription", @@ -16255,6 +16297,24 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "Tag", + "AliasList": [], + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "ResourceGroupName", "AliasList": [], @@ -16297,7 +16357,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile", "Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription", @@ -16682,6 +16742,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "Tag", + "AliasList": [], + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ResourceGroupName", @@ -16978,7 +17062,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile", "Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription", @@ -17446,7 +17530,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile", "Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription", @@ -17805,7 +17889,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile", "Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription", @@ -17998,7 +18082,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile", "Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription", @@ -18189,6 +18273,24 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "Tag", + "AliasList": [], + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "ResourceGroupName", "AliasList": [], @@ -18231,7 +18333,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile", "Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription", @@ -18471,6 +18573,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "Tag", + "AliasList": [], + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ResourceGroupName", @@ -18662,7 +18788,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile", "Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription", @@ -18831,7 +18957,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ScmSiteUseMainSiteRestrictionConfig": "System.Boolean", "MainSiteAccessRestrictions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction]", @@ -20185,7 +20311,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ScmSiteUseMainSiteRestrictionConfig": "System.Boolean", "MainSiteAccessRestrictions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction]", @@ -20453,7 +20579,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ScmSiteUseMainSiteRestrictionConfig": "System.Boolean", "MainSiteAccessRestrictions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction]", @@ -20847,7 +20973,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ScmSiteUseMainSiteRestrictionConfig": "System.Boolean", "MainSiteAccessRestrictions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction]", @@ -20989,7 +21115,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ScmSiteUseMainSiteRestrictionConfig": "System.Boolean", "MainSiteAccessRestrictions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction]", @@ -21311,7 +21437,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ScmSiteUseMainSiteRestrictionConfig": "System.Boolean", "MainSiteAccessRestrictions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction]", @@ -21678,7 +21804,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile", "Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription", @@ -22193,7 +22319,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile", "Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription", @@ -22466,7 +22592,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps", "Name": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackupConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackupConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackupConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Databases": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting[]", "KeepAtLeastOneBackup": "System.Nullable`1[System.Boolean]", @@ -22672,7 +22798,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -23221,7 +23347,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -23508,7 +23634,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps", "Name": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.PSAzureDeletedWebApp", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.PSAzureDeletedWebApp, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.PSAzureDeletedWebApp, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DeletionTime": "System.DateTime", "DeletedSiteId": "System.Int32", @@ -23834,7 +23960,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps", "Name": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackup, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackup, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Databases": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting[]", "Scheduled": "System.Nullable`1[System.Boolean]", @@ -23975,7 +24101,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -24332,7 +24458,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -24523,7 +24649,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps", "Name": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackupConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackupConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackupConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Databases": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting[]", "KeepAtLeastOneBackup": "System.Nullable`1[System.Boolean]", @@ -24639,7 +24765,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -24904,7 +25030,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -25115,7 +25241,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps", "Name": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackup, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackup, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Databases": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting[]", "Scheduled": "System.Nullable`1[System.Boolean]", @@ -25238,7 +25364,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -25503,7 +25629,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -25714,7 +25840,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps", "Name": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackup, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackup, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Databases": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting[]", "Scheduled": "System.Nullable`1[System.Boolean]", @@ -25855,7 +25981,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -26212,7 +26338,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -26623,7 +26749,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -26980,7 +27106,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -27171,7 +27297,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSCertificate, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSCertificate, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile", "CerBlob": "System.Byte[]", @@ -27592,7 +27718,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -27949,7 +28075,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -28282,7 +28408,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -28927,7 +29053,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -29185,7 +29311,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -29649,7 +29775,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -30106,7 +30232,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -30456,7 +30582,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -30861,7 +30987,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -31149,7 +31275,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -31414,7 +31540,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -31625,7 +31751,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -31772,7 +31898,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile", "Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription", @@ -32009,7 +32135,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile", "Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription", @@ -32501,7 +32627,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -33038,7 +33164,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -33446,7 +33572,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -33883,7 +34009,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -34126,7 +34252,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "System.Nullable`1[Microsoft.Azure.Management.WebSites.Models.AzureStorageType]", "Name": "System.String", @@ -34787,7 +34913,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -35144,7 +35270,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -35335,7 +35461,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -35520,7 +35646,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -36258,7 +36384,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -37074,7 +37200,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -37293,7 +37419,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -37746,7 +37872,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -38076,7 +38202,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -38457,7 +38583,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -38727,7 +38853,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -38968,7 +39094,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -39179,7 +39305,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -39326,7 +39452,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -39567,7 +39693,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -39778,7 +39904,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -40326,7 +40452,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[], Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[], Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath", "GenericTypeArguments": [], @@ -40442,7 +40568,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -41076,7 +41202,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[], Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[], Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath", "GenericTypeArguments": [], @@ -41508,7 +41634,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -41771,7 +41897,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -41918,7 +42044,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -42159,7 +42285,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -42370,7 +42496,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -42517,7 +42643,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -42758,7 +42884,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -43100,7 +43226,7 @@ "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[], Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[], Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath", "GenericTypeArguments": [], @@ -43110,7 +43236,7 @@ "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "System.Nullable`1[Microsoft.Azure.Management.WebSites.Models.AzureStorageType]", "Name": "System.String", @@ -47383,7 +47509,7 @@ "Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction": { "Namespace": "Microsoft.Azure.Commands.WebApps.Utilities", "Name": "Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -48000,7 +48126,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -48012,7 +48138,7 @@ "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Priority": "System.Int32", "RuleName": "System.String", From 7838b8771a06fbcffb68173e316d1cbb0d9823f6 Mon Sep 17 00:00:00 2001 From: xaliciayang Date: Tue, 3 Mar 2020 06:07:08 -0800 Subject: [PATCH 11/61] updated tests; renamed parameters for consistency; adjusted backups API to be more user-friendly; added session recording for LTR MI Policy --- .../ManagedDatabaseBackupTests.ps1 | 87 +- ...anagedInstanceLongTermRetentionPolicy.json | 827 ++++++++++++++++++ src/Sql/Sql.Test/Sql.Test.csproj | 3 +- src/Sql/Sql/Az.Sql.psd1 | 4 +- ...BackupLongTermRetentionPolicyCmdletBase.cs | 2 +- ...edDatabaseBackupLongTermRetentionPolicy.cs | 2 +- ...lManagedDatabaseLongTermRetentionBackup.cs | 70 +- ...lManagedDatabaseLongTermRetentionBackup.cs | 14 +- ...edDatabaseBackupLongTermRetentionPolicy.cs | 6 +- .../Cmdlet/RestoreAzureSqlManagedDatabase.cs | 3 +- src/Sql/Sql/Sql.csproj | 2 +- 11 files changed, 920 insertions(+), 100 deletions(-) create mode 100644 src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionPolicy.json diff --git a/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.ps1 b/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.ps1 index 8fd33ae4fd8e..e11014fd172c 100644 --- a/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.ps1 +++ b/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.ps1 @@ -181,21 +181,19 @@ function Test-ManagedDeletedDatabaseShortTermRetentionPolicy function Test-ManagedInstanceLongTermRetentionPolicy($location = "southeastasia") { # Setup - $resourceGroup = Create-ResourceGroupForTest - $resourceGroupName = $resourceGroup.ResourceGroupName - $managedInstance = Create-ManagedInstanceForTest - $managedInstanceName = $managedInstance.ManagedInstanceName + $resourceGroupName = "cl_stage_sea_cv" + $managedInstanceName = "seageodr-gen5-gp" $weeklyRetention = "P1W" $zeroRetention = "PT0S" try { # create test database - $databaseName = "test_ltr_policy_database" - $database = New-AzSqlInstanceDatabase -ResourceGroupName $resourceGroupName -ManagedInstanceName $managedInstanceName -DatabaseName $databaseName + $databaseName = "test-$(New-Guid)" + $database = New-AzSqlInstanceDatabase -ResourceGroupName $resourceGroupName -InstanceName $managedInstanceName -Name $databaseName - Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy -ResourceGroupName $resourceGroupName -ManagedInstanceName $managedInstanceName -DatabaseName $databaseName -WeeklyRetention $weeklyRetention - $policy = Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy -ResourceGroup $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $databaseName + Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy -ResourceGroupName $resourceGroupName -InstanceName $managedInstanceName -DatabaseName $databaseName -WeeklyRetention $weeklyRetention + $policy = Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy -ResourceGroup $resourceGroupName -InstanceName $managedInstanceName -DatabaseName $databaseName Assert-AreEqual $policy.WeeklyRetention $weeklyRetention Assert-AreEqual $policy.MonthlyRetention $zeroRetention Assert-AreEqual $policy.YearlyRetention $zeroRetention @@ -218,53 +216,56 @@ function Test-ManagedInstanceLongTermRetentionBackup # Set the weekly retention on the database so that the first backup gets picked up, for example: # Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy -ResourceGroup $resourceGroup -ServerName $serverName -DatabaseName $databaseName -WeeklyRetention P1W # Wait about 18 hours until it gets properly copied and you see the backup when run get backups, for example: - # Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -ManagedinstanceName $managedInstanceName -DatabaeName $databaseName + # Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -InstanceName $managedInstanceName -DatabaeName $databaseName $resourceGroup = "cl_stage_sea_cv" $locationName = "southeastasia" $managedInstanceName = "seageodr-gen5-gp" - $databaseName = "test" - $weeklyRetention1 = "P1W" - $weeklyRetention2 = "P2W" - $restoredDatabase = "ps_test_restore" - $databaseWithRemovableBackup = "target1"; + $databaseName = "target1" + $databaseWithRemovableBackup = "sqlcrudtest-8305"; # Basic Get Tests $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName Assert-AreNotEqual $backups.Count 0 - $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -ManagedInstanceName $managedInstanceName + $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -InstanceName $managedInstanceName Assert-AreNotEqual $backups.Count 0 - $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -ManagedInstanceName $managedInstanceName -DatabaseName $databaseName + $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -InstanceName $managedInstanceName -DatabaseName $databaseName Assert-AreNotEqual $backups.Count 0 - $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -ManagedInstanceName $managedInstanceName -DatabaseName $databaseName -BackupName $backups[0].BackupName + $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -InstanceName $managedInstanceName -DatabaseName $databaseName -BackupName $backups[0].BackupName Assert-AreNotEqual $backups.Count 0 # Test Get Piping - $backups = Get-AzSqlInstanceDatabase -ResourceGroup $resourceGroup -ManagedInstanceName $managedInstanceName -DatabaseName $databaseName | Get-AzSqlInstanceDatabaseLongTermRetentionBackup + $backups = Get-AzSqlInstanceDatabase -ResourceGroup $resourceGroup -InstanceName $managedInstanceName -Name $databaseName | Get-AzSqlInstanceDatabaseLongTermRetentionBackup Assert-AreNotEqual $backups.Count 0 - $backups = Get-AzSqlInstanceDatabase -ResourceGroup $resourceGroup -ManagedInstanceName $managedInstanceName -DatabaseName $databaseName | Get-AzSqlInstanceDatabaseLongTermRetentionBackup -BackupName $backups[0].BackupName + $backups = Get-AzSqlInstanceDatabase -ResourceGroup $resourceGroup -InstanceName $managedInstanceName -Name $databaseName | Get-AzSqlInstanceDatabaseLongTermRetentionBackup -BackupName $backups[0].BackupName Assert-AreNotEqual $backups.Count 0 # Test Get Optional Parameters - $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -ManagedInstanceName $managedInstanceName -DatabaseName $databaseName -OnlyLatestPerDatabase -DatabaseState All + $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -InstanceName $managedInstanceName -DatabaseName $databaseName -OnlyLatestPerDatabase + Assert-AreNotEqual $backups.Count 0 + $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -InstanceName $managedInstanceName -OnlyLatestPerDatabase -DatabaseState All Assert-AreNotEqual $backups.Count 0 # Test Get Piping with Optional Parameters - $backups = Get-AzSqlInstanceDatabase -ResourceGroup $resourceGroup -ManagedInstanceName $managedInstanceName -DatabaseName $databaseName | Get-AzSqlInstanceDatabaseLongTermRetentionBackup -OnlyLatestPerDatabase + $backups = Get-AzSqlInstanceDatabase -ResourceGroup $resourceGroup -InstanceName $managedInstanceName -Name $databaseName | Get-AzSqlInstanceDatabaseLongTermRetentionBackup -OnlyLatestPerDatabase Assert-AreNotEqual $backups.Count 0 # Restore Test $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName - $db = Restore-AzSqlInstanceDatabase -FromLongTermRetentionBackup -ResourceId $backups[0].ResourceId -ResourceGroupName $resourceGroup -ManagedInstanceName $managedInstanceName -TargetDatabaseName $restoredDatabase - Assert-AreEqual $db.DatabaseName $restoredDatabase - - # Test Remove with Piping - Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -ManagedInstanceName $serverName -DatabaseName $databaseWithRemovableBackup -BackupName $backups[0].BackupName | Remove-AzSqlInstanceDatabaseLongTermRetentionBackup - $backups = Get-AzSqlInstanceDatabase -ResourceGroup $resourceGroup -ManagedInstanceName $managedInstanceName -DatabaseName $databaseWithRemovableBackup | Get-AzSqlInstanceDatabaseLongTermRetentionBackup -OnlyLatestPerDatabase - Assert-AreEqual $backups.Count 0 + $restoredDatabase = "ps-test-restore-$(New-Guid)" + $db = Restore-AzSqlInstanceDatabase -FromLongTermRetentionBackup -ResourceId $backups[0].ResourceId -TargetResourceGroupName $resourceGroup -TargetInstanceName $managedInstanceName -TargetInstanceDatabaseName $restoredDatabase + Assert-AreEqual $db.Name $restoredDatabase + + # Test Remove + $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -InstanceName $managedInstanceName -DatabaseName $databaseWithRemovableBackup + $initialBackups = $backups.Count + Remove-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -InstanceName $managedInstanceName -DatabaseName $databaseWithRemovableBackup -BackupName $backups[0].BackupName -Force + $backups = Get-AzSqlInstanceDatabase -ResourceGroup $resourceGroup -InstanceName $managedInstanceName -Name $databaseWithRemovableBackup | Get-AzSqlInstanceDatabaseLongTermRetentionBackup + $expectedBackups = $initialBackups-1 + Assert-AreEqual $expectedBackups $backups.Count # drop the restored db - Remove-AzSqlInstanceDatabase -ResourceGroup $resourceGroup -ManagedInstanceName $managedInstanceName -DatabaseName $restoredDatabase -} + Remove-AzSqlInstanceDatabase -ResourceGroupName $resourceGroup -InstanceName $managedInstanceName -Name $restoredDatabase -Force + } <# .SYNOPSIS @@ -282,42 +283,40 @@ function Test-ManagedInstanceLongTermRetentionResourceGroupBasedBackup $locationName = "southeastasia" $managedInstanceName = "seageodr-gen5-gp" $databaseName = "test" - $restoredDatabase = "ps_test_restore_rg" $databaseWithRemovableBackup = "test"; # Basic Get Tests $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -ResourceGroupName $resourceGroup Assert-AreNotEqual $backups.Count 0 - $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -ManagedInstanceName $managedInstanceName -ResourceGroupName $resourceGroup + $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -InstanceName $managedInstanceName -ResourceGroupName $resourceGroup Assert-AreNotEqual $backups.Count 0 - $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -ManagedInstanceName $managedInstanceName -DatabaseName $databaseName -ResourceGroupName $resourceGroup + $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -InstanceName $managedInstanceName -DatabaseName $databaseName -ResourceGroupName $resourceGroup Assert-AreNotEqual $backups.Count 0 - $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -ManagedInstanceName $managedInstanceName -DatabaseName $databaseName -BackupName $backups[0].BackupName -ResourceGroupName $resourceGroup + $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -InstanceName $managedInstanceName -DatabaseName $databaseName -BackupName $backups[0].BackupName -ResourceGroupName $resourceGroup Assert-AreNotEqual $backups.Count 0 # Test Get Piping - $backups = Get-AzSqlInstanceDatabase -ResourceGroup $resourceGroup -ManagedInstanceName $managedInstanceName -DatabaseName $databaseName | Get-AzSqlInstanceDatabaseLongTermRetentionBackup + $backups = Get-AzSqlInstanceDatabase -ResourceGroup $resourceGroup -InstanceName $managedInstanceName -Name $databaseName | Get-AzSqlInstanceDatabaseLongTermRetentionBackup Assert-AreNotEqual $backups.Count 0 - $backups = Get-AzSqlInstanceDatabase -ResourceGroup $resourceGroup -ManagedInstanceName $managedInstanceName -DatabaseName $databaseName | Get-AzSqlInstanceDatabaseLongTermRetentionBackup -BackupName $backups[0].BackupName + $backups = Get-AzSqlInstanceDatabase -ResourceGroup $resourceGroup -InstanceName $managedInstanceName -Name $databaseName | Get-AzSqlInstanceDatabaseLongTermRetentionBackup -BackupName $backups[0].BackupName Assert-AreNotEqual $backups.Count 0 # Test Get Optional Parameters - $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -ManagedInstanceName $managedInstanceName -DatabaseName $databaseName -ResourceGroupName $resourceGroup -OnlyLatestPerDatabase -DatabaseState All + $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -InstanceName $managedInstanceName -DatabaseName $databaseName -ResourceGroupName $resourceGroup -OnlyLatestPerDatabase + $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -InstanceName $managedInstanceName -ResourceGroupName $resourceGroup -DatabaseState All Assert-AreNotEqual $backups.Count 0 # Test Get Piping with Optional Parameters - $backups = Get-AzSqlInstanceDatabase -ResourceGroup $resourceGroup -ManagedInstanceName $managedInstanceName -DatabaseName $databaseName | Get-AzSqlInstanceDatabaseLongTermRetentionBackup -OnlyLatestPerDatabase + $backups = Get-AzSqlInstanceDatabase -ResourceGroup $resourceGroup -InstanceName $managedInstanceName -Name $databaseName | Get-AzSqlInstanceDatabaseLongTermRetentionBackup -OnlyLatestPerDatabase Assert-AreNotEqual $backups.Count 0 # Restore Test + $restoredDatabase = "ps-test-rest-rg-$(New-Guid)" $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -ResourceGroupName $resourceGroup - $db = Restore-AzSqlInstanceDatabase -FromLongTermRetentionBackup -ResourceId $backups[0].ResourceId -ResourceGroupName $resourceGroup -ManagedInstanceName $managedInstanceName -TargetDatabaseName $restoredDatabase - Assert-AreEqual $db.DatabaseName $restoredDatabase - - # Test Remove with Piping - Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -ManagedInstanceName $managedInstanceName -DatabaseName $databaseWithRemovableBackup -BackupName $backups[0].BackupName -ResourceGroupName $resourceGroup | Remove-AzSqlInstanceDatabaseLongTermRetentionBackup -Force + $db = Restore-AzSqlInstanceDatabase -FromLongTermRetentionBackup -ResourceId $backups[0].ResourceId -ResourceGroupName $resourceGroup -InstanceName $managedInstanceName -TargetDatabaseName $restoredDatabase + Assert-AreEqual $db.Name $restoredDatabase # drop the restored db - Remove-AzSqlInstanceDatabase -ResourceGroup $resourceGroup -ManagedInstanceName $managedInstanceName -DatabaseName $restoredDatabase -Force + Remove-AzSqlInstanceDatabase -ResourceGroupName $resourceGroup -InstanceName $managedInstanceName -Name $restoredDatabase -Force } diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionPolicy.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionPolicy.json new file mode 100644 index 000000000000..757fe666a6f3 --- /dev/null +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionPolicy.json @@ -0,0 +1,827 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3Rlc3QtZTE4NjUyZDAtOTlhNy00YmM3LTllYjMtNzMzYWUzZGFlMzM3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "99ac52e2-44eb-4dd3-b44b-7d4008da73af" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "2b51339c-73a5-4279-8494-9e7fe1479b3d" + ], + "x-ms-correlation-request-id": [ + "2b51339c-73a5-4279-8494-9e7fe1479b3d" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T065749Z:2b51339c-73a5-4279-8494-9e7fe1479b3d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 06:57:48 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "218" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337' under resource group 'cl_stage_sea_cv' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3Rlc3QtZTE4NjUyZDAtOTlhNy00YmM3LTllYjMtNzMzYWUzZGFlMzM3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e45c30d6-efd0-4bab-a595-eb0c12b6262c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "7ee8552f-80b3-4de6-a298-eb6fb4f989b9" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T065827Z:7ee8552f-80b3-4de6-a298-eb6fb4f989b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 06:58:26 GMT" + ], + "Content-Length": [ + "487" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-03T06:57:55.49Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"name\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3A/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4be20c2a-347e-41b9-af58-afc53c62827e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c42a3e62-a10f-42ba-940e-71b34cb4bed0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "a7cd7e50-4be9-4dc6-8f95-006c18a95ee4" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T065752Z:a7cd7e50-4be9-4dc6-8f95-006c18a95ee4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 06:57:51 GMT" + ], + "Content-Length": [ + "873" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 8\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"seageodr-gen5-gp.lkgt1aeda54f909eb.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"cloudSA\",\r\n \"subnetId\": \"/subscriptions/741fd0f5-9cb8-442c-91c3-3ef4ca231c2a/resourceGroups/cloudlifter/providers/Microsoft.ClassicNetwork/virtualNetworks/cloudlifter-runners-stage-sea/subnets/Gen5GeoDR\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 8,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"lkgt1aeda54f909eb\",\r\n \"publicDataEndpointEnabled\": true,\r\n \"proxyOverride\": \"Proxy\",\r\n \"timezoneId\": \"UTC\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp\",\r\n \"name\": \"seageodr-gen5-gp\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3Rlc3QtZTE4NjUyZDAtOTlhNy00YmM3LTllYjMtNzMzYWUzZGFlMzM3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southeastasia\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cc25406c-0134-439d-9feb-36679bb3da22" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/59f6633f-b545-4f9f-a816-fa03ae4e786a?api-version=2019-06-01-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/59f6633f-b545-4f9f-a816-fa03ae4e786a?api-version=2019-06-01-preview" + ], + "x-ms-request-id": [ + "59f6633f-b545-4f9f-a816-fa03ae4e786a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "7e1f27c4-c473-4c2b-8a32-abf816a531d8" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T065755Z:7e1f27c4-c473-4c2b-8a32-abf816a531d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 06:57:55 GMT" + ], + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateManagedDatabase\",\r\n \"startTime\": \"2020-03-03T06:57:55.04Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/59f6633f-b545-4f9f-a816-fa03ae4e786a?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNTlmNjYzM2YtYjU0NS00ZjlmLWE4MTYtZmEwM2FlNGU3ODZhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "3379e0ff-a30e-4d83-b21e-8daf691d8a1a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "8e4681cf-73a8-4c80-bb0a-d76fb704012d" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T065811Z:8e4681cf-73a8-4c80-bb0a-d76fb704012d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 06:58:11 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"59f6633f-b545-4f9f-a816-fa03ae4e786a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T06:57:55.04Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/59f6633f-b545-4f9f-a816-fa03ae4e786a?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNTlmNjYzM2YtYjU0NS00ZjlmLWE4MTYtZmEwM2FlNGU3ODZhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "d71528dc-9055-402f-a568-2873540eb663" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "cd6d87c8-73c9-4f86-b8f6-73dd02e08ca7" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T065827Z:cd6d87c8-73c9-4f86-b8f6-73dd02e08ca7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 06:58:26 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"59f6633f-b545-4f9f-a816-fa03ae4e786a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-03T06:57:55.04Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/backupLongTermRetentionPolicies/default?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3Rlc3QtZTE4NjUyZDAtOTlhNy00YmM3LTllYjMtNzMzYWUzZGFlMzM3L2JhY2t1cExvbmdUZXJtUmV0ZW50aW9uUG9saWNpZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4e20def4-a74b-4cd6-85b9-f1969bb656f0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1f8c4606-cddc-4900-a419-d48b1c236ae6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "37ef1c15-5698-462e-a42e-5d1965fc5d26" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T065827Z:37ef1c15-5698-462e-a42e-5d1965fc5d26" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 06:58:27 GMT" + ], + "Content-Length": [ + "444" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"weeklyRetention\": \"PT0S\",\r\n \"monthlyRetention\": \"PT0S\",\r\n \"yearlyRetention\": \"PT0S\",\r\n \"weekOfYear\": 0\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/backupLongTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicy\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/backupLongTermRetentionPolicies/default?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3Rlc3QtZTE4NjUyZDAtOTlhNy00YmM3LTllYjMtNzMzYWUzZGFlMzM3L2JhY2t1cExvbmdUZXJtUmV0ZW50aW9uUG9saWNpZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "346a3574-9927-4ee2-9fd6-20a57fcfa9f0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "4e3b8ef5-1586-41a9-a36f-76bde9b81b99" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T065917Z:4e3b8ef5-1586-41a9-a36f-76bde9b81b99" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 06:59:16 GMT" + ], + "Content-Length": [ + "443" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"weeklyRetention\": \"P1W\",\r\n \"monthlyRetention\": \"PT0S\",\r\n \"yearlyRetention\": \"PT0S\",\r\n \"weekOfYear\": 0\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/backupLongTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicy\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/backupLongTermRetentionPolicies/default?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3Rlc3QtZTE4NjUyZDAtOTlhNy00YmM3LTllYjMtNzMzYWUzZGFlMzM3L2JhY2t1cExvbmdUZXJtUmV0ZW50aW9uUG9saWNpZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8a2aa9ab-52ce-404a-b2d6-1c96a6dc3afd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "478c7a89-7390-4681-9e12-5d92b1e6933f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "9e9d3331-15b1-4dd9-ade4-bc665170f562" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T065917Z:9e9d3331-15b1-4dd9-ade4-bc665170f562" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 06:59:16 GMT" + ], + "Content-Length": [ + "443" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"weeklyRetention\": \"P1W\",\r\n \"monthlyRetention\": \"PT0S\",\r\n \"yearlyRetention\": \"PT0S\",\r\n \"weekOfYear\": 0\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/backupLongTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicy\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/backupLongTermRetentionPolicies/default?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3Rlc3QtZTE4NjUyZDAtOTlhNy00YmM3LTllYjMtNzMzYWUzZGFlMzM3L2JhY2t1cExvbmdUZXJtUmV0ZW50aW9uUG9saWNpZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"weeklyRetention\": \"P1W\",\r\n \"weekOfYear\": 0\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cb55c5ee-878c-4fe8-8a4d-df47c0adaa78" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "80" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyOperationResults/a0624928-18b3-4696-a23f-19856493b7f5?api-version=2018-06-01-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyAzureAsyncOperation/a0624928-18b3-4696-a23f-19856493b7f5?api-version=2018-06-01-preview" + ], + "x-ms-request-id": [ + "a0624928-18b3-4696-a23f-19856493b7f5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "9059cedc-f0a0-443b-8359-f536c1243585" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T065830Z:9059cedc-f0a0-443b-8359-f536c1243585" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 06:58:30 GMT" + ], + "Content-Length": [ + "91" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"UpsertDatabaseBackupArchivalPolicyV2\",\r\n \"startTime\": \"2020-03-03T06:58:28.173Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyAzureAsyncOperation/a0624928-18b3-4696-a23f-19856493b7f5?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9tYW5hZ2VkSW5zdGFuY2VMb25nVGVybVJldGVudGlvblBvbGljeUF6dXJlQXN5bmNPcGVyYXRpb24vYTA2MjQ5MjgtMThiMy00Njk2LWEyM2YtMTk4NTY0OTNiN2Y1P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "fb9395e5-ae4c-4d44-adb8-acab776444a4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "17589760-ac17-4c06-a0f5-9758ea833ca3" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T065845Z:17589760-ac17-4c06-a0f5-9758ea833ca3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 06:58:45 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a0624928-18b3-4696-a23f-19856493b7f5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T06:58:28.173Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyAzureAsyncOperation/a0624928-18b3-4696-a23f-19856493b7f5?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9tYW5hZ2VkSW5zdGFuY2VMb25nVGVybVJldGVudGlvblBvbGljeUF6dXJlQXN5bmNPcGVyYXRpb24vYTA2MjQ5MjgtMThiMy00Njk2LWEyM2YtMTk4NTY0OTNiN2Y1P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "ad4e38c0-e40c-4b29-882f-08db4280748e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "729c0508-9538-4cd0-b562-09dc7787330e" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T065901Z:729c0508-9538-4cd0-b562-09dc7787330e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 06:59:01 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a0624928-18b3-4696-a23f-19856493b7f5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T06:58:28.173Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyAzureAsyncOperation/a0624928-18b3-4696-a23f-19856493b7f5?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9tYW5hZ2VkSW5zdGFuY2VMb25nVGVybVJldGVudGlvblBvbGljeUF6dXJlQXN5bmNPcGVyYXRpb24vYTA2MjQ5MjgtMThiMy00Njk2LWEyM2YtMTk4NTY0OTNiN2Y1P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "d494b56f-5be9-4f8d-83a4-552eb94ea1a4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "d6dad000-7988-4bc6-993e-e29c97ca74d3" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T065916Z:d6dad000-7988-4bc6-993e-e29c97ca74d3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 06:59:16 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a0624928-18b3-4696-a23f-19856493b7f5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-03T06:58:28.173Z\"\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "8cfb8b62-bcd6-4713-89ad-18097f75cc5b" + } +} \ No newline at end of file diff --git a/src/Sql/Sql.Test/Sql.Test.csproj b/src/Sql/Sql.Test/Sql.Test.csproj index b44c981dd89f..3e502d516e7e 100644 --- a/src/Sql/Sql.Test/Sql.Test.csproj +++ b/src/Sql/Sql.Test/Sql.Test.csproj @@ -19,10 +19,11 @@ - + + diff --git a/src/Sql/Sql/Az.Sql.psd1 b/src/Sql/Sql/Az.Sql.psd1 index 3c09bb15a4db..09c0f1c1e262 100644 --- a/src/Sql/Sql/Az.Sql.psd1 +++ b/src/Sql/Sql/Az.Sql.psd1 @@ -255,8 +255,8 @@ CmdletsToExport = 'Get-AzSqlDatabaseTransparentDataEncryption', 'Disable-AzSqlInstanceDatabaseSensitivityRecommendation', 'Get-AzSqlInstanceDatabaseLongTermRetentionBackup', 'Remove-AzSqlInstanceDatabaseLongTermRetentionBackup', - 'Get-AzSqlDatabaseBackupLongTermRetentionPolicy', - 'Set-AzSqlDatabaseBackupLongTermRetentionPolicy' + 'Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy', + 'Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy' # Variables to export from this module # VariablesToExport = @() diff --git a/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/AzureSqlManagedDatabaseBackupLongTermRetentionPolicyCmdletBase.cs b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/AzureSqlManagedDatabaseBackupLongTermRetentionPolicyCmdletBase.cs index 46523d56391c..8bf9eb9db1de 100644 --- a/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/AzureSqlManagedDatabaseBackupLongTermRetentionPolicyCmdletBase.cs +++ b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/AzureSqlManagedDatabaseBackupLongTermRetentionPolicyCmdletBase.cs @@ -37,7 +37,7 @@ public abstract class AzureSqlManagedDatabaseBackupLongTermRetentionPolicyCmdlet HelpMessage = "The name of the Azure Managed Instance the database belongs to.")] [ResourceNameCompleter("Microsoft.Sql/managedInstance", "ResourceGroupName")] [ValidateNotNullOrEmpty] - public string ManagedInstanceName { get; set; } + public string InstanceName { get; set; } /// /// Gets or sets the name of the managed database to use. diff --git a/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/GetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy.cs b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/GetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy.cs index ca4aafce0c6e..148678f174b4 100644 --- a/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/GetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy.cs +++ b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/GetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy.cs @@ -37,7 +37,7 @@ protected override IEnumerable - /// Parameter set name for server name. + /// Parameter set name for instance name. /// private const string InstanceNameSet = "InstanceName"; + /// + /// Parameter set for database name. + /// + private const string DatabaseNameSet = "DatabaseName"; + /// /// Parameter set name for location name. /// @@ -57,11 +62,6 @@ public class GetAzureSqlManagedDatabaseLongTermRetentionBackup : AzureSqlManaged /// private const string GetBackupByResourceIdSet = "GetBackupByResourceId"; - /// - /// Parameter set for using a Database Resource ID when getting multiple backups. - /// - private const string GetBackupsByResourceIdSet = "GetBackupsByResourceId"; - /// /// The location the backups are in. /// @@ -72,20 +72,20 @@ public class GetAzureSqlManagedDatabaseLongTermRetentionBackup : AzureSqlManaged [Parameter(Mandatory = true, ParameterSetName = InstanceNameSet, Position = 0, - HelpMessage = "The location of the backups' source Managed Instance.")] + HelpMessage = "The backups' source Managed Instance.")] + [Parameter(Mandatory = true, + ParameterSetName = DatabaseNameSet, + Position = 0, + HelpMessage = "The backups' source Managed Database.")] [Parameter(Mandatory = true, ParameterSetName = BackupNameSet, Position = 0, - HelpMessage = "The location of the backups' source Managed Instance.")] + HelpMessage = "The backups' source Managed Instance.")] [Parameter(Mandatory = true, ParameterSetName = GetBackupByResourceIdSet, Position = 1, - HelpMessage = "The location of the backups' source Managed Instance.")] - [Parameter(Mandatory = true, - ParameterSetName = GetBackupsByResourceIdSet, - Position = 1, - HelpMessage = "The location of the backups' source Managed Instance.")] - [LocationCompleter("Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentonManagedInstanceBackups")] + HelpMessage = "The location of the backup's source Managed Instance.")] + [LocationCompleter("Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups")] public string Location { get; set; } /// @@ -112,11 +112,6 @@ public class GetAzureSqlManagedDatabaseLongTermRetentionBackup : AzureSqlManaged Position = 0, ValueFromPipelineByPropertyName = true, HelpMessage = "The database Resource ID to get backups for.")] - [Parameter(Mandatory = true, - ParameterSetName = GetBackupsByResourceIdSet, - Position = 0, - ValueFromPipelineByPropertyName = true, - HelpMessage = "The database Resource ID to get backups for.")] public string ResourceId { get; set; } /// @@ -126,20 +121,25 @@ public class GetAzureSqlManagedDatabaseLongTermRetentionBackup : AzureSqlManaged ParameterSetName = InstanceNameSet, Position = 1, HelpMessage = "The name of the Managed Instance the backups are under.")] + [Parameter(Mandatory = true, + ParameterSetName = DatabaseNameSet, + Position = 1, + HelpMessage = "The name of the Managed Database the backups are under.")] [Parameter(Mandatory = true, ParameterSetName = BackupNameSet, Position = 1, HelpMessage = "The name of the Managed Instance the backups are under.")] [ResourceNameCompleter("Microsoft.Sql/managedInstances", "ResourceGroupName")] [ValidateNotNullOrEmpty] - public string ManagedInstanceName { get; set; } + public string InstanceName { get; set; } /// /// Gets or sets the name of the database. /// - [Parameter(Mandatory = false, - ParameterSetName = InstanceNameSet, - HelpMessage = "The name of the Managed Instance the backups are under.")] + [Parameter(Mandatory = true, + ParameterSetName = DatabaseNameSet, + Position = 2, + HelpMessage = "The name of the Managed Database the backups are under.")] [Parameter(Mandatory = true, ParameterSetName = BackupNameSet, Position = 2, @@ -159,12 +159,7 @@ public class GetAzureSqlManagedDatabaseLongTermRetentionBackup : AzureSqlManaged [Parameter(Mandatory = true, ParameterSetName = GetBackupByInputObjectSet, ValueFromPipelineByPropertyName = true, - Position = 1, - HelpMessage = "The name of the backup.")] - [Parameter(Mandatory = true, - ParameterSetName = GetBackupByResourceIdSet, - ValueFromPipelineByPropertyName = true, - Position = 1, + Position = 2, HelpMessage = "The name of the backup.")] [ValidateNotNullOrEmpty] [SupportsWildcards] @@ -179,6 +174,9 @@ public class GetAzureSqlManagedDatabaseLongTermRetentionBackup : AzureSqlManaged [Parameter(Mandatory = false, ParameterSetName = InstanceNameSet, HelpMessage = "The name of the resource group.")] + [Parameter(Mandatory = false, + ParameterSetName = DatabaseNameSet, + HelpMessage = "The name of the resource group.")] [Parameter(Mandatory = false, ParameterSetName = BackupNameSet, HelpMessage = "The name of the resource group.")] @@ -195,10 +193,10 @@ public class GetAzureSqlManagedDatabaseLongTermRetentionBackup : AzureSqlManaged ParameterSetName = LocationSet, HelpMessage = "Whether or not to only get the latest backup per database. Defaults to false.")] [Parameter(Mandatory = false, - ParameterSetName = GetBackupsByInputObjectSet, + ParameterSetName = DatabaseNameSet, HelpMessage = "Whether or not to only get the latest backup per database. Defaults to false.")] [Parameter(Mandatory = false, - ParameterSetName = GetBackupsByResourceIdSet, + ParameterSetName = GetBackupsByInputObjectSet, HelpMessage = "Whether or not to only get the latest backup per database. Defaults to false.")] [ValidateNotNullOrEmpty] public SwitchParameter OnlyLatestPerDatabase { get; set; } @@ -218,10 +216,6 @@ public class GetAzureSqlManagedDatabaseLongTermRetentionBackup : AzureSqlManaged ParameterSetName = GetBackupsByInputObjectSet, ValueFromPipelineByPropertyName = true, HelpMessage = "The state of the database whose backups you want to find, Alive, Deleted, or All. Defaults to All")] - [Parameter(Mandatory = false, - ParameterSetName = GetBackupsByResourceIdSet, - ValueFromPipelineByPropertyName = true, - HelpMessage = "The state of the database whose backups you want to find, Alive, Deleted, or All. Defaults to All")] [ValidateNotNullOrEmpty] [ValidateSet(Management.Sql.Models.LongTermRetentionDatabaseState.All, Management.Sql.Models.LongTermRetentionDatabaseState.Deleted, Management.Sql.Models.LongTermRetentionDatabaseState.Live, IgnoreCase = true)] @@ -236,7 +230,7 @@ protected override IEnumerable /// Gets or sets the name of the database. @@ -141,7 +141,7 @@ protected override IEnumerable PersistChanges( IEnumerable entity) { - ModelAdapter.RemoveManagedDatabaseLongTermRetentionBackup(Location, ManagedInstanceName, DatabaseName, BackupName, ResourceGroupName); + ModelAdapter.RemoveManagedDatabaseLongTermRetentionBackup(Location, InstanceName, DatabaseName, BackupName, ResourceGroupName); return entity; } @@ -180,7 +180,7 @@ public override void ExecuteCmdlet() if (InputObject != null) { Location = InputObject.Location; - ManagedInstanceName = InputObject.ManagedInstanceName; + InstanceName = InputObject.ManagedInstanceName; DatabaseName = InputObject.DatabaseName; BackupName = InputObject.BackupName; ResourceGroupName = InputObject.ResourceGroupName; @@ -193,8 +193,8 @@ public override void ExecuteCmdlet() if (ShouldProcess(this.BackupName)) { if (Force.IsPresent || ShouldContinue( - string.Format(CultureInfo.InvariantCulture, Properties.Resources.RemoveAzureSqlInstanceDatabaseLongTermRetentionBackupDescription, this.BackupName, this.DatabaseName, this.ManagedInstanceName, this.Location), - string.Format(CultureInfo.InvariantCulture, Properties.Resources.RemoveAzureSqlInstanceDatabaseLongTermRetentionBackupWarning, this.BackupName, this.DatabaseName, this.ManagedInstanceName, this.Location))) + string.Format(CultureInfo.InvariantCulture, Properties.Resources.RemoveAzureSqlInstanceDatabaseLongTermRetentionBackupDescription, this.BackupName, this.DatabaseName, this.InstanceName, this.Location), + string.Format(CultureInfo.InvariantCulture, Properties.Resources.RemoveAzureSqlInstanceDatabaseLongTermRetentionBackupWarning, this.BackupName, this.DatabaseName, this.InstanceName, this.Location))) { base.ExecuteCmdlet(); } @@ -222,7 +222,7 @@ private void ParseLongTermRentionBackupResourceId(string resourceId) } Location = tokens[5 + offset]; - ManagedInstanceName = tokens[7 + offset]; + InstanceName = tokens[7 + offset]; DatabaseName = tokens[9 + offset]; BackupName = tokens[11 + offset]; } diff --git a/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/SetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy.cs b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/SetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy.cs index 5ff762f261ec..3c4a0eff63a7 100644 --- a/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/SetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy.cs +++ b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/SetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy.cs @@ -122,7 +122,7 @@ protected override IEnumerable() { - ModelAdapter.SetManagedDatabaseBackupLongTermRetentionPolicy(this.ResourceGroupName, this.ManagedInstanceName, this.DatabaseName, entity.First()) + ModelAdapter.SetManagedDatabaseBackupLongTermRetentionPolicy(this.ResourceGroupName, this.InstanceName, this.DatabaseName, entity.First()) }; } else diff --git a/src/Sql/Sql/ManagedDatabase/Cmdlet/RestoreAzureSqlManagedDatabase.cs b/src/Sql/Sql/ManagedDatabase/Cmdlet/RestoreAzureSqlManagedDatabase.cs index 6a25e649955a..dab41c79c293 100644 --- a/src/Sql/Sql/ManagedDatabase/Cmdlet/RestoreAzureSqlManagedDatabase.cs +++ b/src/Sql/Sql/ManagedDatabase/Cmdlet/RestoreAzureSqlManagedDatabase.cs @@ -293,7 +293,7 @@ public class RestoreAzureRmSqlManagedDatabase [Parameter(ParameterSetName = GeoRestoreFromGeoBackupSetNameFromResourceIdParameterSet, Mandatory = true, HelpMessage = "The resource id of instance database object to restore")] - [Parameter(ParameterSetName =LtrBackupRestoreFromInputParametersSet, + [Parameter(ParameterSetName = LtrBackupRestoreFromInputParametersSet, Mandatory = true, Position = 0, ValueFromPipelineByPropertyName = true, @@ -404,7 +404,6 @@ public class RestoreAzureRmSqlManagedDatabase HelpMessage = "The name of the target resource group to restore to.")] [Parameter(ParameterSetName = LtrBackupRestoreFromInputParametersSet, Mandatory = true, - Position = 0, HelpMessage = "The name of the target resource group to restore to.")] [ResourceGroupCompleter] public string TargetResourceGroupName { get; set; } diff --git a/src/Sql/Sql/Sql.csproj b/src/Sql/Sql/Sql.csproj index 80f93c27e136..52b3dc5fe458 100644 --- a/src/Sql/Sql/Sql.csproj +++ b/src/Sql/Sql/Sql.csproj @@ -21,7 +21,7 @@ - + From 886eefd004d1f69475bcd1f8fac3ee0a1fe57405 Mon Sep 17 00:00:00 2001 From: ancicovi Date: Tue, 3 Mar 2020 17:33:59 +0100 Subject: [PATCH 12/61] Update MI and SQL DB Server CRUD tests --- .../ScenarioTests/ManagedInstanceCrudScenarioTests.ps1 | 8 ++++++-- src/Sql/Sql.Test/ScenarioTests/ServerCrudTests.ps1 | 4 +++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.ps1 b/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.ps1 index 1a2be575d16d..f4103b6e45d3 100644 --- a/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.ps1 +++ b/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.ps1 @@ -38,6 +38,7 @@ function Test-CreateManagedInstance $collation = "Serbian_Cyrillic_100_CS_AS" $timezoneId = "Central Europe Standard Time" $proxyOverride = "Proxy" + $minimalTlsVersion = "1.2" try { # Setup VNET @@ -48,7 +49,7 @@ function Test-CreateManagedInstance $job = New-AzSqlInstance -ResourceGroupName $rg.ResourceGroupName -Name $managedInstanceName ` -Location $rg.Location -AdministratorCredential $credentials -SubnetId $subnetId ` -LicenseType $licenseType -StorageSizeInGB $storageSizeInGB -Vcore $vCore -SkuName $skuName -Collation $collation ` - -TimezoneId $timezoneId -PublicDataEndpointEnabled -ProxyOverride $proxyOverride -AsJob + -TimezoneId $timezoneId -PublicDataEndpointEnabled -ProxyOverride $proxyOverride -MinimalTlsVersion $minimalTlsVersion -AsJob $job | Wait-Job $managedInstance1 = $job.Output @@ -65,6 +66,7 @@ function Test-CreateManagedInstance Assert-AreEqual $managedInstance1.TimezoneId $timezoneId Assert-AreEqual $managedInstance1.PublicDataEndpointEnabled $true Assert-AreEqual $managedInstance1.ProxyOverride $proxyOverride + Assert-AreEqual $managedInstance1.MinimalTlsVersion $minimalTlsVersion Assert-StartsWith ($managedInstance1.ManagedInstanceName + ".") $managedInstance1.FullyQualifiedDomainName Assert-NotNull $managedInstance1.DnsZone @@ -176,10 +178,11 @@ function Test-SetManagedInstance $vCore = 16 $publicDataEndpointEnabled = $true $proxyOverride = "Proxy" + $minimalTlsVersion = "1.2" $managedInstance4 = Set-AzSqlInstance -ResourceId $managedInstance.Id ` -AdministratorPassword $credentials.Password -LicenseType $licenseType -StorageSizeInGB $storageSizeInGB -Vcore $vCore ` - -PublicDataEndpointEnabled $publicDataEndpointEnabled -ProxyOverride $proxyOverride -Force + -PublicDataEndpointEnabled $publicDataEndpointEnabled -ProxyOverride $proxyOverride -MinimalTlsVersion $minimalTlsVersion -Force Assert-AreEqual $managedInstance4.ManagedInstanceName $managedInstance.ManagedInstanceName Assert-AreEqual $managedInstance4.AdministratorLogin $managedInstance.AdministratorLogin @@ -188,6 +191,7 @@ function Test-SetManagedInstance Assert-AreEqual $managedInstance4.StorageSizeInGB $storageSizeInGB Assert-AreEqual $managedInstance4.PublicDataEndpointEnabled $publicDataEndpointEnabled Assert-AreEqual $managedInstance4.ProxyOverride $proxyOverride + Assert-AreEqual $managedInstance4.MinimalTlsVersion $minimalTlsVersion Assert-StartsWith ($managedInstance4.ManagedInstanceName + ".") $managedInstance4.FullyQualifiedDomainName # Test hardware generation change using ComputeGeneration diff --git a/src/Sql/Sql.Test/ScenarioTests/ServerCrudTests.ps1 b/src/Sql/Sql.Test/ScenarioTests/ServerCrudTests.ps1 index 8a537610923a..9aad3d82c6bd 100644 --- a/src/Sql/Sql.Test/ScenarioTests/ServerCrudTests.ps1 +++ b/src/Sql/Sql.Test/ScenarioTests/ServerCrudTests.ps1 @@ -28,18 +28,20 @@ function Test-CreateServer $serverLogin = "testusername" $serverPassword = "t357ingP@s5w0rd!" $credentials = new-object System.Management.Automation.PSCredential($serverLogin, ($serverPassword | ConvertTo-SecureString -asPlainText -Force)) + $minimalTlsVersion = "1.2" try { # With all parameters $job = New-AzSqlServer -ResourceGroupName $rg.ResourceGroupName -ServerName $serverName ` - -Location $rg.Location -ServerVersion $version -SqlAdministratorCredentials $credentials -AsJob + -Location $rg.Location -ServerVersion $version -SqlAdministratorCredentials $credentials -MinimalTlsVersion $minimalTlsVersion -AsJob $job | Wait-Job $server1 = $job.Output Assert-AreEqual $server1.ServerName $serverName Assert-AreEqual $server1.ServerVersion $version Assert-AreEqual $server1.SqlAdministratorLogin $serverLogin + Assert-AreEqual $server1.MinimalTlsVersion $minimalTlsVersion Assert-StartsWith ($server1.ServerName + ".") $server1.FullyQualifiedDomainName } finally From 870cd911861ada7be6a8d53b39bf74190fd69235 Mon Sep 17 00:00:00 2001 From: wyunchi-ms Date: Wed, 4 Mar 2020 00:38:42 +0800 Subject: [PATCH 13/61] update changelog for Az.Network --- src/Network/Network/ChangeLog.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Network/Network/ChangeLog.md b/src/Network/Network/ChangeLog.md index b54497d1e5fe..f484dc1d98f3 100644 --- a/src/Network/Network/ChangeLog.md +++ b/src/Network/Network/ChangeLog.md @@ -19,6 +19,7 @@ ---> ## Upcoming Release +* Added PublicNetworkAccess to New-AzSqlServer and Set-AzSqlServer ## Version 2.3.1 * Added one extra parameter note for parameter `-EnableProxyProtocol` for `New-AzPrivateLinkService` cmdlet. From d8d93722a5244cb999781055af32ca606bcde588 Mon Sep 17 00:00:00 2001 From: Amol Agarwal Date: Tue, 3 Mar 2020 09:39:11 -0800 Subject: [PATCH 14/61] regenerate the help file. --- ...AzSqlServerActiveDirectoryOnlyAuthentication.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/Sql/Sql/help/Disable-AzSqlServerActiveDirectoryOnlyAuthentication.md b/src/Sql/Sql/help/Disable-AzSqlServerActiveDirectoryOnlyAuthentication.md index a2f4d509ae7f..dc9d07e7c4c7 100644 --- a/src/Sql/Sql/help/Disable-AzSqlServerActiveDirectoryOnlyAuthentication.md +++ b/src/Sql/Sql/help/Disable-AzSqlServerActiveDirectoryOnlyAuthentication.md @@ -22,8 +22,8 @@ The **Disable-AzSqlServerActiveDirectoryOnlyAuthentication** cmdlet disables Azu ## EXAMPLES -### Example 1: Disable Azure Active Directory only authentication for a server -``` +### Example 1 +```powershell PS C:\>Disable-AzSqlServerActiveDirectoryOnlyAuthentication -ResourceGroupName "ResourceGroup01" -ServerName "Server01" ResourceGroupName ServerName DisplayName ObjectId IsAzureADOnlyAuthentication ----------------- ---------- ----------- -------- ----------- @@ -38,7 +38,7 @@ This command disables Azure Active Directory (Azure AD) only authentication requ The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Type: IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -53,7 +53,7 @@ Accept wildcard characters: False The name of the resource group. ```yaml -Type: System.String +Type: String Parameter Sets: (All) Aliases: @@ -68,7 +68,7 @@ Accept wildcard characters: False The name of the Azure SQL Server the Azure Active Directory administrator is in. ```yaml -Type: System.String +Type: String Parameter Sets: (All) Aliases: @@ -83,7 +83,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: System.Management.Automation.SwitchParameter +Type: SwitchParameter Parameter Sets: (All) Aliases: cf @@ -99,7 +99,7 @@ Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: System.Management.Automation.SwitchParameter +Type: SwitchParameter Parameter Sets: (All) Aliases: wi From d27f305d2bbb74af643679b67b4836c408296acd Mon Sep 17 00:00:00 2001 From: Amol Agarwal Date: Tue, 3 Mar 2020 10:09:29 -0800 Subject: [PATCH 15/61] regenerate blank file and see if that works. --- ...ServerActiveDirectoryOnlyAuthentication.md | 19 ++++--------------- 1 file changed, 4 insertions(+), 15 deletions(-) diff --git a/src/Sql/Sql/help/Disable-AzSqlServerActiveDirectoryOnlyAuthentication.md b/src/Sql/Sql/help/Disable-AzSqlServerActiveDirectoryOnlyAuthentication.md index dc9d07e7c4c7..b4f4a022481f 100644 --- a/src/Sql/Sql/help/Disable-AzSqlServerActiveDirectoryOnlyAuthentication.md +++ b/src/Sql/Sql/help/Disable-AzSqlServerActiveDirectoryOnlyAuthentication.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Disable-AzSqlServerActiveDirectoryOnlyAuthentication ## SYNOPSIS -Disables Azure AD only authentication for a specific SQL Server. +{{ Fill in the Synopsis }} ## SYNTAX @@ -18,19 +18,16 @@ Disable-AzSqlServerActiveDirectoryOnlyAuthentication [-ServerName] [-Re ``` ## DESCRIPTION -The **Disable-AzSqlServerActiveDirectoryOnlyAuthentication** cmdlet disables Azure Active Directory (Azure AD) only authentication requirement for an AzureSQL Server in the current subscription. +{{ Fill in the Description }} ## EXAMPLES ### Example 1 ```powershell -PS C:\>Disable-AzSqlServerActiveDirectoryOnlyAuthentication -ResourceGroupName "ResourceGroup01" -ServerName "Server01" -ResourceGroupName ServerName DisplayName ObjectId IsAzureADOnlyAuthentication ------------------ ---------- ----------- -------- ----------- -ResourceGroup01 Server01 DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b False +PS C:\> {{ Add example code here }} ``` -This command disables Azure Active Directory (Azure AD) only authentication requirement for an AzureSQL server named Server01 that is associated with a resource group named ResourceGroup01. +{{ Add example description here }} ## PARAMETERS @@ -124,11 +121,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS - -[Remove-AzSqlServerActiveDirectoryAdministrator](./Remove-AzSqlServerActiveDirectoryAdministrator.md) - -[Set-AzSqlServerActiveDirectoryAdministrator](./Set-AzSqlServerActiveDirectoryAdministrator.md) - -[Get-AzSqlServerActiveDirectoryAdministrator](./Get-AzSqlServerActiveDirectoryAdministrator.md) - -[SQL Database Documentation](https://docs.microsoft.com/azure/sql-database/) From cc9c7a3c97df28fb9ae64d1bfe168fbdac06605a Mon Sep 17 00:00:00 2001 From: Amol Agarwal Date: Tue, 3 Mar 2020 10:20:34 -0800 Subject: [PATCH 16/61] add online version to help file. Looks like that has become compulsory now. --- ...ServerActiveDirectoryOnlyAuthentication.md | 21 ++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/src/Sql/Sql/help/Disable-AzSqlServerActiveDirectoryOnlyAuthentication.md b/src/Sql/Sql/help/Disable-AzSqlServerActiveDirectoryOnlyAuthentication.md index b4f4a022481f..9412b526e601 100644 --- a/src/Sql/Sql/help/Disable-AzSqlServerActiveDirectoryOnlyAuthentication.md +++ b/src/Sql/Sql/help/Disable-AzSqlServerActiveDirectoryOnlyAuthentication.md @@ -1,14 +1,14 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Sql.dll-Help.xml Module Name: Az.Sql -online version: +online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/disable-azsqlserveractivedirectoryonlyauthentication schema: 2.0.0 --- # Disable-AzSqlServerActiveDirectoryOnlyAuthentication ## SYNOPSIS -{{ Fill in the Synopsis }} +Disables Azure AD only authentication for a specific SQL Server. ## SYNTAX @@ -18,16 +18,19 @@ Disable-AzSqlServerActiveDirectoryOnlyAuthentication [-ServerName] [-Re ``` ## DESCRIPTION -{{ Fill in the Description }} +The **Disable-AzSqlServerActiveDirectoryOnlyAuthentication** cmdlet disables Azure Active Directory (Azure AD) only authentication requirement for an AzureSQL Server in the current subscription. ## EXAMPLES ### Example 1 ```powershell -PS C:\> {{ Add example code here }} +PS C:\>Disable-AzSqlServerActiveDirectoryOnlyAuthentication -ResourceGroupName "ResourceGroup01" -ServerName "Server01" +ResourceGroupName ServerName DisplayName ObjectId IsAzureADOnlyAuthentication +----------------- ---------- ----------- -------- ----------- +ResourceGroup01 Server01 DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b False ``` -{{ Add example description here }} +This command disables Azure Active Directory (Azure AD) only authentication requirement for an AzureSQL server named Server01 that is associated with a resource group named ResourceGroup01. ## PARAMETERS @@ -121,3 +124,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS + +[Remove-AzSqlServerActiveDirectoryAdministrator](./Remove-AzSqlServerActiveDirectoryAdministrator.md) + +[Set-AzSqlServerActiveDirectoryAdministrator](./Set-AzSqlServerActiveDirectoryAdministrator.md) + +[Get-AzSqlServerActiveDirectoryAdministrator](./Get-AzSqlServerActiveDirectoryAdministrator.md) + +[SQL Database Documentation](https://docs.microsoft.com/azure/sql-database/) From e4951e188dfc17f8b4d7ec4268290a4e5435b003 Mon Sep 17 00:00:00 2001 From: Amol Agarwal Date: Tue, 3 Mar 2020 11:22:06 -0800 Subject: [PATCH 17/61] update ChangeLog.md --- src/Sql/Sql/ChangeLog.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Sql/Sql/ChangeLog.md b/src/Sql/Sql/ChangeLog.md index 02bae8e27c3a..e7ef1ac16453 100644 --- a/src/Sql/Sql/ChangeLog.md +++ b/src/Sql/Sql/ChangeLog.md @@ -21,6 +21,7 @@ * Added support for cross subscription point in time restore on Managed Instances. * Added support for changing existing Sql Managed Instance hardware generation * Fixed `Update-AzSqlServerVulnerabilityAssessmentSetting` help examples: parameter/property output - EmailAdmins +* Updating Azure SQL Server Active Azure administrator API to use 2019-06-01-preview api version. ## Version 2.2.0 Fix New-AzSqlDatabaseSecondary cmdlet to check for PartnerDatabaseName existence instead of DatabaseName existence. From 2a676c5ef3daf4f1e3402705eeb52b8624d7742c Mon Sep 17 00:00:00 2001 From: ziwa-msft Date: Tue, 3 Mar 2020 12:10:31 -0800 Subject: [PATCH 18/61] Added test recordings for Sql DB and bumped version for management.sql --- src/Network/Network/Network.csproj | 2 +- .../Sql.Test/ScenarioTests/ServerCrudTests.cs | 7 + .../ScenarioTests/ServerCrudTests.ps1 | 44 +- ...eandUpdateServerWithMinimalTlsVersion.json | 1465 +++++++++++++++++ src/Sql/Sql.Test/Sql.Test.csproj | 2 +- .../Sql/Server/Cmdlet/SetAzureSqlServer.cs | 10 + src/Sql/Sql/Sql.csproj | 2 +- 7 files changed, 1526 insertions(+), 6 deletions(-) create mode 100644 src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ServerCrudTests/CreateandUpdateServerWithMinimalTlsVersion.json diff --git a/src/Network/Network/Network.csproj b/src/Network/Network/Network.csproj index ae4771473d09..e665159f0603 100644 --- a/src/Network/Network/Network.csproj +++ b/src/Network/Network/Network.csproj @@ -14,7 +14,7 @@ - + diff --git a/src/Sql/Sql.Test/ScenarioTests/ServerCrudTests.cs b/src/Sql/Sql.Test/ScenarioTests/ServerCrudTests.cs index 76827642e58b..c575858c2cdb 100644 --- a/src/Sql/Sql.Test/ScenarioTests/ServerCrudTests.cs +++ b/src/Sql/Sql.Test/ScenarioTests/ServerCrudTests.cs @@ -88,5 +88,12 @@ public void TestServerUpdateWithPublicNetworkAccess() { RunPowerShellTest("Test-UpdateServerWithPublicNetworkAccess"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void CreateandUpdateServerWithMinimalTlsVersion() + { + RunPowerShellTest("Test-CreateandUpdateServerWithMinimalTlsVersion"); + } } } diff --git a/src/Sql/Sql.Test/ScenarioTests/ServerCrudTests.ps1 b/src/Sql/Sql.Test/ScenarioTests/ServerCrudTests.ps1 index 9aad3d82c6bd..e27f2e36c733 100644 --- a/src/Sql/Sql.Test/ScenarioTests/ServerCrudTests.ps1 +++ b/src/Sql/Sql.Test/ScenarioTests/ServerCrudTests.ps1 @@ -28,7 +28,6 @@ function Test-CreateServer $serverLogin = "testusername" $serverPassword = "t357ingP@s5w0rd!" $credentials = new-object System.Management.Automation.PSCredential($serverLogin, ($serverPassword | ConvertTo-SecureString -asPlainText -Force)) - $minimalTlsVersion = "1.2" try { @@ -41,7 +40,6 @@ function Test-CreateServer Assert-AreEqual $server1.ServerName $serverName Assert-AreEqual $server1.ServerVersion $version Assert-AreEqual $server1.SqlAdministratorLogin $serverLogin - Assert-AreEqual $server1.MinimalTlsVersion $minimalTlsVersion Assert-StartsWith ($server1.ServerName + ".") $server1.FullyQualifiedDomainName } finally @@ -75,7 +73,7 @@ function Test-UpdateServer Assert-AreEqual $server1.ServerVersion $server.ServerVersion Assert-AreEqual $server1.SqlAdministratorLogin $server.SqlAdministratorLogin Assert-StartsWith ($server1.ServerName + ".") $server1.FullyQualifiedDomainName - + # Test piping $serverPassword = "n3wc00lP@55w0rd!!!" $secureString = ConvertTo-SecureString $serverPassword -AsPlainText -Force @@ -257,6 +255,46 @@ function Test-UpdateServerWithoutIdentity } } +<# + .SYNOPSIS + Tests create and update a server with minimal TLS version + .DESCRIPTION + SmokeTest +#> +function Test-CreateandUpdateServerWithMinimalTlsVersion +{ + # Setup + $location = "eastus2euap" + $rg = Create-ResourceGroupForTest $location + + try + { + # Test using parameters + $serverName = Get-ServerName + $version = "12.0" + $serverLogin = "testusername" + $serverPassword = "t357ingP@s5w0rd!" + $credentials = new-object System.Management.Automation.PSCredential($serverLogin, ($serverPassword | ConvertTo-SecureString -asPlainText -Force)) + $tls1_1 = "1.1" + $tls1_2 = "1.2" + + # With all parameters + $job = New-AzSqlServer -ResourceGroupName $rg.ResourceGroupName -ServerName $serverName ` + -Location $rg.Location -ServerVersion $version -SqlAdministratorCredentials $credentials -MinimalTlsVersion $tls1_2 -AsJob + $job | Wait-Job + + $server1 = Get-AzSqlServer -ResourceGroupName $rg.ResourceGroupName -ServerName $serverName + Assert-AreEqual $server1.MinimalTlsVersion $tls1_2 + + $server2 = Set-AzSqlServer -ResourceGroupName $rg.ResourceGroupName -ServerName $serverName -MinimalTlsVersion $tls1_1 + Assert-AreEqual $server2.MinimalTlsVersion $tls1_1 + } + finally + { + Remove-ResourceGroupForTest $rg + } +} + <# .SYNOPSIS Tests create server with Enabled/Disabled/null PublicNetworkAccess. Also check get server returns correct PublicNetworkAccess. diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ServerCrudTests/CreateandUpdateServerWithMinimalTlsVersion.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ServerCrudTests/CreateandUpdateServerWithMinimalTlsVersion.json new file mode 100644 index 000000000000..4504f4dbe26c --- /dev/null +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ServerCrudTests/CreateandUpdateServerWithMinimalTlsVersion.json @@ -0,0 +1,1465 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourcegroups/ps3596?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlZ3JvdXBzL3BzMzU5Nj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2euap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d7458c7c-8368-4ee4-bf91-4968d31e0db8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "33" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "cb9ec918-c037-4641-9f3c-3268c5ee206e" + ], + "x-ms-correlation-request-id": [ + "cb9ec918-c037-4641-9f3c-3268c5ee206e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200303T200633Z:cb9ec918-c037-4641-9f3c-3268c5ee206e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:06:32 GMT" + ], + "Content-Length": [ + "170" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596\",\r\n \"name\": \"ps3596\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/servers/ps7247?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3BzMzU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzI0Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "81a3a254-dcc9-4c4b-b2ad-0340fdd09ed3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "bde20972-e13b-4e34-b4e9-8bc009ce3487" + ], + "x-ms-correlation-request-id": [ + "bde20972-e13b-4e34-b4e9-8bc009ce3487" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200303T200633Z:bde20972-e13b-4e34-b4e9-8bc009ce3487" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:06:33 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "138" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps7247' under resource group 'ps3596' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/servers/ps7247?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3BzMzU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzI0Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5da088e9-2af4-457e-9c48-f383ad2dd20e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "14f35d70-176f-4043-9eb3-4f5de7decdfe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200303T200722Z:14f35d70-176f-4043-9eb3-4f5de7decdfe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:07:21 GMT" + ], + "Content-Length": [ + "439" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps7247.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"minimalTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/servers/ps7247\",\r\n \"name\": \"ps7247\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/servers/ps7247?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3BzMzU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzI0Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7cbb0423-33e6-40ba-9ee4-598a4e289438" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "44072a9c-7085-440d-8443-46e0d0fecdf1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "c564df8a-0d95-4b87-817a-dd43fdb86460" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200303T200722Z:c564df8a-0d95-4b87-817a-dd43fdb86460" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:07:21 GMT" + ], + "Content-Length": [ + "439" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps7247.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"minimalTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/servers/ps7247\",\r\n \"name\": \"ps7247\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/servers/ps7247?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3BzMzU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzI0Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "970e0b44-6481-47d0-bb13-516145cf71cb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "93ad9db8-f684-4533-a4f2-e079494023fd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "2065a5b7-32b5-4bdb-a6cc-eedc9d217428" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200303T200722Z:2065a5b7-32b5-4bdb-a6cc-eedc9d217428" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:07:22 GMT" + ], + "Content-Length": [ + "439" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps7247.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"minimalTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/servers/ps7247\",\r\n \"name\": \"ps7247\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/servers/ps7247?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3BzMzU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzI0Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cee7f1c6-acef-4628-9e47-1ca49a9f7f89" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "f9c1eeb0-d5d0-4fab-82a2-4e15fefe6816" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200303T200724Z:f9c1eeb0-d5d0-4fab-82a2-4e15fefe6816" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:07:24 GMT" + ], + "Content-Length": [ + "439" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps7247.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"minimalTlsVersion\": \"1.1\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/servers/ps7247\",\r\n \"name\": \"ps7247\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/servers/ps7247?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3BzMzU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzI0Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"version\": \"12.0\",\r\n \"minimalTlsVersion\": \"1.2\"\r\n },\r\n \"location\": \"eastus2euap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9736fa2c-3c9b-4b1c-ad19-75e4501cd163" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/locations/eastus2euap/serverOperationResults/39d36dca-2810-4277-af8d-ebfff88fbce4?api-version=2019-06-01-preview" + ], + "Retry-After": [ + "1" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/locations/eastus2euap/serverAzureAsyncOperation/39d36dca-2810-4277-af8d-ebfff88fbce4?api-version=2019-06-01-preview" + ], + "x-ms-request-id": [ + "39d36dca-2810-4277-af8d-ebfff88fbce4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "dfec78dd-a7c5-432a-bd35-12f0e1de4ab4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200303T200636Z:dfec78dd-a7c5-432a-bd35-12f0e1de4ab4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:06:36 GMT" + ], + "Content-Length": [ + "73" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-03-03T20:06:36.02Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/servers/ps7247?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3BzMzU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzI0Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"minimalTlsVersion\": \"1.1\"\r\n },\r\n \"location\": \"eastus2euap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8f09d538-0286-4465-b3f7-212f469eda3b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "90" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/locations/eastus2euap/serverOperationResults/744fe371-1f73-4d8e-a28c-1fb00c9db412?api-version=2019-06-01-preview" + ], + "Retry-After": [ + "1" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/locations/eastus2euap/serverAzureAsyncOperation/744fe371-1f73-4d8e-a28c-1fb00c9db412?api-version=2019-06-01-preview" + ], + "x-ms-request-id": [ + "744fe371-1f73-4d8e-a28c-1fb00c9db412" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "71518eac-beab-49b2-9cf4-f164e68fce0b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200303T200723Z:71518eac-beab-49b2-9cf4-f164e68fce0b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:07:22 GMT" + ], + "Content-Length": [ + "73" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-03-03T20:07:23.23Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/locations/eastus2euap/serverAzureAsyncOperation/39d36dca-2810-4277-af8d-ebfff88fbce4?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3BzMzU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi8zOWQzNmRjYS0yODEwLTQyNzctYWY4ZC1lYmZmZjg4ZmJjZTQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "8938dda9-b7ef-4c7b-a3bd-82c9d7a33ea8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "06d488b6-26d2-4aa1-b5db-5197a0b538db" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200303T200637Z:06d488b6-26d2-4aa1-b5db-5197a0b538db" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:06:37 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"39d36dca-2810-4277-af8d-ebfff88fbce4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T20:06:36.02Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/locations/eastus2euap/serverAzureAsyncOperation/39d36dca-2810-4277-af8d-ebfff88fbce4?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3BzMzU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi8zOWQzNmRjYS0yODEwLTQyNzctYWY4ZC1lYmZmZjg4ZmJjZTQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "0c21aa76-b844-41bd-8575-e29b3f63bc0e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "ed1595f9-945c-4fc1-b2c0-71fd79e4e07a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200303T200638Z:ed1595f9-945c-4fc1-b2c0-71fd79e4e07a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:06:38 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"39d36dca-2810-4277-af8d-ebfff88fbce4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T20:06:36.02Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/locations/eastus2euap/serverAzureAsyncOperation/39d36dca-2810-4277-af8d-ebfff88fbce4?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3BzMzU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi8zOWQzNmRjYS0yODEwLTQyNzctYWY4ZC1lYmZmZjg4ZmJjZTQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "9724f84e-785d-4141-ae6c-22ed9c5b3a12" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "d27fff86-8533-4875-ae85-978d3df2f785" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200303T200639Z:d27fff86-8533-4875-ae85-978d3df2f785" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:06:39 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"39d36dca-2810-4277-af8d-ebfff88fbce4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T20:06:36.02Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/locations/eastus2euap/serverAzureAsyncOperation/39d36dca-2810-4277-af8d-ebfff88fbce4?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3BzMzU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi8zOWQzNmRjYS0yODEwLTQyNzctYWY4ZC1lYmZmZjg4ZmJjZTQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "593a4f3a-fa2a-4bc4-ac2c-bb1340d19ebc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "bfd373ff-c81b-4d48-8eac-d55b7598a7b1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200303T200640Z:bfd373ff-c81b-4d48-8eac-d55b7598a7b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:06:40 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"39d36dca-2810-4277-af8d-ebfff88fbce4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T20:06:36.02Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/locations/eastus2euap/serverAzureAsyncOperation/39d36dca-2810-4277-af8d-ebfff88fbce4?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3BzMzU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi8zOWQzNmRjYS0yODEwLTQyNzctYWY4ZC1lYmZmZjg4ZmJjZTQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "6354d888-0eb6-430d-b965-e63c5bacbef9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "1621c22e-90f7-48c9-bf6d-d20a7a861756" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200303T200642Z:1621c22e-90f7-48c9-bf6d-d20a7a861756" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:06:41 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"39d36dca-2810-4277-af8d-ebfff88fbce4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T20:06:36.02Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/locations/eastus2euap/serverAzureAsyncOperation/39d36dca-2810-4277-af8d-ebfff88fbce4?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3BzMzU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi8zOWQzNmRjYS0yODEwLTQyNzctYWY4ZC1lYmZmZjg4ZmJjZTQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "8ada13b0-f8a0-4b43-88db-05e57011328a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "bb2f9c5f-bc13-47c5-b147-6bac2b7204d3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200303T200702Z:bb2f9c5f-bc13-47c5-b147-6bac2b7204d3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:07:01 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"39d36dca-2810-4277-af8d-ebfff88fbce4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T20:06:36.02Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/locations/eastus2euap/serverAzureAsyncOperation/39d36dca-2810-4277-af8d-ebfff88fbce4?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3BzMzU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi8zOWQzNmRjYS0yODEwLTQyNzctYWY4ZC1lYmZmZjg4ZmJjZTQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "0a8bdc48-fe73-4dbc-ac87-9bc52218f212" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "3eb0979a-c1a2-4377-8e06-6bde2de48c8c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200303T200722Z:3eb0979a-c1a2-4377-8e06-6bde2de48c8c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:07:21 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"39d36dca-2810-4277-af8d-ebfff88fbce4\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-03T20:06:36.02Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourceGroups/ps3596/providers/Microsoft.Sql/locations/eastus2euap/serverAzureAsyncOperation/744fe371-1f73-4d8e-a28c-1fb00c9db412?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlR3JvdXBzL3BzMzU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi83NDRmZTM3MS0xZjczLTRkOGUtYTI4Yy0xZmIwMGM5ZGI0MTI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "cdf6e769-f261-4ac5-b760-a821056c532a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "42bf348d-7aeb-406c-9f97-d546bfe3fc64" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200303T200724Z:42bf348d-7aeb-406c-9f97-d546bfe3fc64" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:07:24 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"744fe371-1f73-4d8e-a28c-1fb00c9db412\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-03T20:07:23.23Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/resourcegroups/ps3596?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L3Jlc291cmNlZ3JvdXBzL3BzMzU5Nj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8a1fcf45-3ca9-4437-93ef-71117674fca2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1OTYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "c34458fb-205c-4dc0-896e-2f09db6e9b4e" + ], + "x-ms-correlation-request-id": [ + "c34458fb-205c-4dc0-896e-2f09db6e9b4e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200303T200726Z:c34458fb-205c-4dc0-896e-2f09db6e9b4e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:07:26 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1OTYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU9UWXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1OTYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "15cb98df-8c34-4625-9ce0-674075af82b2" + ], + "x-ms-correlation-request-id": [ + "15cb98df-8c34-4625-9ce0-674075af82b2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200303T200742Z:15cb98df-8c34-4625-9ce0-674075af82b2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:07:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1OTYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU9UWXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1OTYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "2787d5d5-34fc-4dfe-a824-d2d1d33b93a8" + ], + "x-ms-correlation-request-id": [ + "2787d5d5-34fc-4dfe-a824-d2d1d33b93a8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200303T200757Z:2787d5d5-34fc-4dfe-a824-d2d1d33b93a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:07:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1OTYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU9UWXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1OTYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "111f5cb2-3732-425b-ac98-82b42b71f260" + ], + "x-ms-correlation-request-id": [ + "111f5cb2-3732-425b-ac98-82b42b71f260" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200303T200812Z:111f5cb2-3732-425b-ac98-82b42b71f260" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:08:12 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1OTYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU9UWXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1OTYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "7f419e7d-f51a-4695-ada0-51a69a739923" + ], + "x-ms-correlation-request-id": [ + "7f419e7d-f51a-4695-ada0-51a69a739923" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200303T200827Z:7f419e7d-f51a-4695-ada0-51a69a739923" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:08:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1OTYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU9UWXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1OTYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "e520d366-694f-40ef-907f-015eb04dddfa" + ], + "x-ms-correlation-request-id": [ + "e520d366-694f-40ef-907f-015eb04dddfa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200303T200842Z:e520d366-694f-40ef-907f-015eb04dddfa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:08:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1OTYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU9UWXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "50585879-1f42-4831-a396-4760913723ee" + ], + "x-ms-correlation-request-id": [ + "50585879-1f42-4831-a396-4760913723ee" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200303T200857Z:50585879-1f42-4831-a396-4760913723ee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:08:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/148bffe3-0304-454b-8a25-ee196b761f18/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1OTYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTQ4YmZmZTMtMDMwNC00NTRiLThhMjUtZWUxOTZiNzYxZjE4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU9UWXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "808ff53e-5f3b-4f9d-8878-4e31578184b3" + ], + "x-ms-correlation-request-id": [ + "808ff53e-5f3b-4f9d-8878-4e31578184b3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200303T200858Z:808ff53e-5f3b-4f9d-8878-4e31578184b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:08:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-CreateandUpdateServerWithMinimalTlsVersion": [ + "ps3596", + "ps7247" + ] + }, + "Variables": { + "SubscriptionId": "148bffe3-0304-454b-8a25-ee196b761f18" + } +} \ No newline at end of file diff --git a/src/Sql/Sql.Test/Sql.Test.csproj b/src/Sql/Sql.Test/Sql.Test.csproj index c33d0555e501..67266f7a8ae7 100644 --- a/src/Sql/Sql.Test/Sql.Test.csproj +++ b/src/Sql/Sql.Test/Sql.Test.csproj @@ -19,7 +19,7 @@ - + diff --git a/src/Sql/Sql/Server/Cmdlet/SetAzureSqlServer.cs b/src/Sql/Sql/Server/Cmdlet/SetAzureSqlServer.cs index dd8d815758ca..fce0023cbab3 100644 --- a/src/Sql/Sql/Server/Cmdlet/SetAzureSqlServer.cs +++ b/src/Sql/Sql/Server/Cmdlet/SetAzureSqlServer.cs @@ -74,6 +74,15 @@ public class SetAzureSqlServer : AzureSqlServerCmdletBase [PSArgumentCompleter("Enabled", "Disabled")] public string PublicNetworkAccess { get; set; } + /// + /// Gets or sets the sql server minimal tls version + /// + [Parameter(Mandatory = false, + HelpMessage = "The Minimal Tls Version for the Sql Azure Managed Instance. Options are: 1.0, 1.1 and 1.2 ")] + [ValidateSet("1.0", "1.1", "1.2")] + [PSArgumentCompleter("1.0", "1.1", "1.2")] + public string MinimalTlsVersion { get; set; } + /// /// Defines whether it is ok to skip the requesting of rule removal confirmation /// @@ -108,6 +117,7 @@ public class SetAzureSqlServer : AzureSqlServerCmdletBase Location = model.FirstOrDefault().Location, Identity = model.FirstOrDefault().Identity ?? ResourceIdentityHelper.GetIdentityObjectFromType(this.AssignIdentity.IsPresent), PublicNetworkAccess = this.PublicNetworkAccess, + MinimalTlsVersion = this.MinimalTlsVersion, }); return updateData; } diff --git a/src/Sql/Sql/Sql.csproj b/src/Sql/Sql/Sql.csproj index 80f93c27e136..3b5412452394 100644 --- a/src/Sql/Sql/Sql.csproj +++ b/src/Sql/Sql/Sql.csproj @@ -21,7 +21,7 @@ - + From 440f3b786b00391c43308c9b84db2f8caacf2d73 Mon Sep 17 00:00:00 2001 From: ziwa-msft Date: Tue, 3 Mar 2020 12:56:21 -0800 Subject: [PATCH 19/61] add mi test --- .../ManagedInstanceCrudScenarioTests.cs | 7 +++ .../ManagedInstanceCrudScenarioTests.ps1 | 47 +++++++++++++++++++ 2 files changed, 54 insertions(+) diff --git a/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.cs b/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.cs index d0da843ffb4a..454ba16e71d9 100644 --- a/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.cs +++ b/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.cs @@ -70,5 +70,12 @@ public void TestCreateManagedInstanceWithIdentity() { RunPowerShellTest("Test-CreateManagedInstanceWithIdentity"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestCreateUpdateManagedInstanceWithMinimalTlsVersion() + { + RunPowerShellTest("Test-CreateUpdateManagedInstanceWithMinimalTlsVersion"); + } } } diff --git a/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.ps1 b/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.ps1 index f4103b6e45d3..cfaf68dd40b1 100644 --- a/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.ps1 +++ b/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.ps1 @@ -361,4 +361,51 @@ function Test-CreateManagedInstanceWithIdentity { Remove-ResourceGroupForTest $rg } +} + +<# + .SYNOPSIS + Tests creating a managed instance with MinimalTlsVersion + .DESCRIPTION + SmokeTest +#> +function Test-CreateUpdateManagedInstanceWithMinimalTlsVersion +{ + # Setup + $location = "eastus2euap" + $rgName = "DejanDuVnetRG" + $subnetId = "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/AndyPG/providers/Microsoft.Network/virtualNetworks/prepare-cl-nimilj/subnets/default" + $managedInstanceName = Get-ManagedInstanceName + $version = "12.0" + $credentials = Get-ServerCredential + $licenseType = "BasePrice" + $storageSizeInGB = 128 + $vCore = 4 + $skuName = "GP_Gen5" + $collation = "Serbian_Cyrillic_100_CS_AS" + $timezoneId = "Central Europe Standard Time" + $proxyOverride = "Proxy" + $tls1_2 = "1.2" + $tls1_1 = "1.1" + + try + { + # With SKU name specified + $job = New-AzSqlInstance -ResourceGroupName $rgName -Name $managedInstanceName ` + -Location $location -AdministratorCredential $credentials -SubnetId $subnetId ` + -LicenseType $licenseType -StorageSizeInGB $storageSizeInGB -Vcore $vCore -SkuName $skuName -Collation $collation ` + -TimezoneId $timezoneId -PublicDataEndpointEnabled -ProxyOverride $proxyOverride -MinimalTlsVersion $tls1_2 -AsJob + $job | Wait-Job + $managedInstance1 = $job.Output + + Assert-AreEqual $managedInstance1.ManagedInstanceName $managedInstanceName + Assert-AreEqual $managedInstance1.MinimalTlsVersion $tls1_2 + + $managedInstance2 = Set-AzSqlInstance -ResourceGroupName $rg.ResourceGroupName -Name $managedInstance.ManagedInstanceName ` + -MinimalTlsVersion $tls1_1 + + Assert-AreEqual $managedInstance2.MinimalTlsVersion $tls1_1 + + Remove-AzSqlInstance -ResourceId $managedInstance2.Id -Force + } } \ No newline at end of file From f07999734a8393db077269b7d69b57e977652dbe Mon Sep 17 00:00:00 2001 From: ziwa-msft Date: Tue, 3 Mar 2020 13:49:42 -0800 Subject: [PATCH 20/61] test udpate --- .../ScenarioTests/ManagedInstanceCrudScenarioTests.ps1 | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.ps1 b/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.ps1 index cfaf68dd40b1..990d0177ae8f 100644 --- a/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.ps1 +++ b/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.ps1 @@ -401,11 +401,13 @@ function Test-CreateUpdateManagedInstanceWithMinimalTlsVersion Assert-AreEqual $managedInstance1.ManagedInstanceName $managedInstanceName Assert-AreEqual $managedInstance1.MinimalTlsVersion $tls1_2 - $managedInstance2 = Set-AzSqlInstance -ResourceGroupName $rg.ResourceGroupName -Name $managedInstance.ManagedInstanceName ` + $managedInstance2 = Set-AzSqlInstance -ResourceGroupName $rgName -Name $managedInstance.ManagedInstanceName ` -MinimalTlsVersion $tls1_1 Assert-AreEqual $managedInstance2.MinimalTlsVersion $tls1_1 - - Remove-AzSqlInstance -ResourceId $managedInstance2.Id -Force + } + finally + { + Remove-AzSqlInstance -ResourceGroupName $rgName -Name $$managedInstanceName -Force } } \ No newline at end of file From c72198fa0d87c841493354f66629326a0fb8bfaf Mon Sep 17 00:00:00 2001 From: ziwa-msft Date: Tue, 3 Mar 2020 13:58:21 -0800 Subject: [PATCH 21/61] test fix --- .../Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.ps1 b/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.ps1 index 990d0177ae8f..491ebb2a547e 100644 --- a/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.ps1 +++ b/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.ps1 @@ -401,7 +401,7 @@ function Test-CreateUpdateManagedInstanceWithMinimalTlsVersion Assert-AreEqual $managedInstance1.ManagedInstanceName $managedInstanceName Assert-AreEqual $managedInstance1.MinimalTlsVersion $tls1_2 - $managedInstance2 = Set-AzSqlInstance -ResourceGroupName $rgName -Name $managedInstance.ManagedInstanceName ` + $managedInstance2 = Set-AzSqlInstance -ResourceGroupName $rgName -Name $managedInstanceName ` -MinimalTlsVersion $tls1_1 Assert-AreEqual $managedInstance2.MinimalTlsVersion $tls1_1 From 1be0731600d63f6c2ef7448a32ddcb46a7b6aefd Mon Sep 17 00:00:00 2001 From: xaliciayang Date: Tue, 3 Mar 2020 14:12:01 -0800 Subject: [PATCH 22/61] fixed some tests; including all session tests (with mock resources) --- .../ManagedDatabaseBackupTests.ps1 | 5 +- ...anagedInstanceLongTermRetentionBackup.json | 2009 +++++++++++++++++ ...anagedInstanceLongTermRetentionPolicy.json | 38 +- ...TermRetentionResourceGroupBasedBackup.json | 1631 +++++++++++++ 4 files changed, 3661 insertions(+), 22 deletions(-) create mode 100644 src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionBackup.json create mode 100644 src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionResourceGroupBasedBackup.json diff --git a/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.ps1 b/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.ps1 index e11014fd172c..12d2b31f18ac 100644 --- a/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.ps1 +++ b/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.ps1 @@ -265,7 +265,7 @@ function Test-ManagedInstanceLongTermRetentionBackup # drop the restored db Remove-AzSqlInstanceDatabase -ResourceGroupName $resourceGroup -InstanceName $managedInstanceName -Name $restoredDatabase -Force - } +} <# .SYNOPSIS @@ -283,7 +283,6 @@ function Test-ManagedInstanceLongTermRetentionResourceGroupBasedBackup $locationName = "southeastasia" $managedInstanceName = "seageodr-gen5-gp" $databaseName = "test" - $databaseWithRemovableBackup = "test"; # Basic Get Tests $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -ResourceGroupName $resourceGroup @@ -313,7 +312,7 @@ function Test-ManagedInstanceLongTermRetentionResourceGroupBasedBackup # Restore Test $restoredDatabase = "ps-test-rest-rg-$(New-Guid)" $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -ResourceGroupName $resourceGroup - $db = Restore-AzSqlInstanceDatabase -FromLongTermRetentionBackup -ResourceId $backups[0].ResourceId -ResourceGroupName $resourceGroup -InstanceName $managedInstanceName -TargetDatabaseName $restoredDatabase + $db = Restore-AzSqlInstanceDatabase -FromLongTermRetentionBackup -ResourceId $backups[0].ResourceId -TargetResourceGroupName $resourceGroup -TargetInstanceName $managedInstanceName -TargetInstanceDatabaseName $restoredDatabase Assert-AreEqual $db.Name $restoredDatabase # drop the restored db diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionBackup.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionBackup.json new file mode 100644 index 000000000000..c7912492d7dc --- /dev/null +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionBackup.json @@ -0,0 +1,2009 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcz9vbmx5TGF0ZXN0UGVyRGF0YWJhc2U9ZmFsc2UmYXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b2235983-6ab5-42bb-ab14-80970c497861" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "adb9fee1-504b-44da-bdab-c9ba8f993bad" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "b0b394ec-e27c-4c12-a3fd-b26813ae294c" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T204251Z:b0b394ec-e27c-4c12-a3fd-b26813ae294c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:42:50 GMT" + ], + "Content-Length": [ + "12882" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-455\",\r\n \"backupTime\": \"2020-02-27T20:49:41Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:23:48.8462413Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-455/longTermRetentionManagedInstanceBackups/af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"name\": \"af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcz9vbmx5TGF0ZXN0UGVyRGF0YWJhc2U9ZmFsc2UmYXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9b48e98a-705f-483e-848a-c83a30a61c90" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3d0fed75-2c69-4404-847c-2d0197009045" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "804a2e80-e42c-4d83-9472-11298b50b674" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T204255Z:804a2e80-e42c-4d83-9472-11298b50b674" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:42:55 GMT" + ], + "Content-Length": [ + "12882" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-455\",\r\n \"backupTime\": \"2020-02-27T20:49:41Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:23:48.8462413Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-455/longTermRetentionManagedInstanceBackups/af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"name\": \"af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcz9vbmx5TGF0ZXN0UGVyRGF0YWJhc2U9ZmFsc2UmYXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d7b1eb6a-5413-4ec0-b2e7-0230b1228dc4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "11c2ff90-c4f9-47e4-8ca3-e1273297e41f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "9d47890e-dc7b-4dc4-a68d-ec56ed1ad7a2" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T204251Z:9d47890e-dc7b-4dc4-a68d-ec56ed1ad7a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:42:50 GMT" + ], + "Content-Length": [ + "12882" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-455\",\r\n \"backupTime\": \"2020-02-27T20:49:41Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:23:48.8462413Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-455/longTermRetentionManagedInstanceBackups/af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"name\": \"af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uRGF0YWJhc2VzL3RhcmdldDEvbG9uZ1Rlcm1SZXRlbnRpb25NYW5hZ2VkSW5zdGFuY2VCYWNrdXBzP29ubHlMYXRlc3RQZXJEYXRhYmFzZT1mYWxzZSZhcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "24e6c08f-eedc-4bff-a1a0-819c0331ab11" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "acf04d12-847d-4273-afdc-413ac83382a7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "c9b51293-64b5-4179-b5c0-de13dafa15ee" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T204252Z:c9b51293-64b5-4179-b5c0-de13dafa15ee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:42:51 GMT" + ], + "Content-Length": [ + "1489" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff%3B132270644280000000?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uRGF0YWJhc2VzL3RhcmdldDEvbG9uZ1Rlcm1SZXRlbnRpb25NYW5hZ2VkSW5zdGFuY2VCYWNrdXBzL2FlMWVhMTQ5LWQ1ZmYtNDU1NC05MzMzLTMzZGViZTBiOTJmZiUzQjEzMjI3MDY0NDI4MDAwMDAwMD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "288597fa-1f34-4286-8240-376a23a005bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "36ec9180-542e-4f7a-8135-7a9b751cd0a4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "deddb630-ec88-4832-ab8d-b06435a9f9a0" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T204252Z:deddb630-ec88-4832-ab8d-b06435a9f9a0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:42:51 GMT" + ], + "Content-Length": [ + "738" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/target1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3RhcmdldDE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3007b69a-3e92-4fdb-807f-65b2ec55023b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "61bf5717-c0b9-4d0a-84f9-8074f1fe3d9b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "8970ac90-22f8-412c-8eee-f89aec080b86" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T204252Z:8970ac90-22f8-412c-8eee-f89aec080b86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:42:51 GMT" + ], + "Content-Length": [ + "474" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-02-25T00:29:11.687Z\",\r\n \"earliestRestorePoint\": \"2020-02-25T20:42:52.6829895Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/target1\",\r\n \"name\": \"target1\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/target1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3RhcmdldDE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ee73a015-0fb6-4578-87b6-ebead5bbfcff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2540668a-4074-416e-a59a-179c98cd651d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "4c0c2476-82b9-467c-adfc-7ded246730ba" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T204253Z:4c0c2476-82b9-467c-adfc-7ded246730ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:42:53 GMT" + ], + "Content-Length": [ + "474" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-02-25T00:29:11.687Z\",\r\n \"earliestRestorePoint\": \"2020-02-25T20:42:53.4017421Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/target1\",\r\n \"name\": \"target1\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/target1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3RhcmdldDE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c70dc602-4c6b-4310-becb-7158ba2ce578" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bcc7bedd-6488-4add-ad8e-3a547950df77" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "a97a8c3a-0168-40a5-a769-76193d1dcf7b" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T204254Z:a97a8c3a-0168-40a5-a769-76193d1dcf7b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:42:54 GMT" + ], + "Content-Length": [ + "474" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-02-25T00:29:11.687Z\",\r\n \"earliestRestorePoint\": \"2020-02-25T20:42:54.8705141Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/target1\",\r\n \"name\": \"target1\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy90YXJnZXQxL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcz9vbmx5TGF0ZXN0UGVyRGF0YWJhc2U9ZmFsc2UmYXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27ab15f9-2338-4539-a570-e2803d3cfe20" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7104a2d0-bb92-444d-8efa-babbeef3974d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "56d87681-42fe-445c-8827-05f303f75c8c" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T204253Z:56d87681-42fe-445c-8827-05f303f75c8c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:42:53 GMT" + ], + "Content-Length": [ + "1489" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff%3B132270644280000000?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy90YXJnZXQxL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcy9hZTFlYTE0OS1kNWZmLTQ1NTQtOTMzMy0zM2RlYmUwYjkyZmYlM0IxMzIyNzA2NDQyODAwMDAwMDA/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "90290633-c7cb-403e-934c-067eb2f0f105" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1b918e54-1cd5-4a17-a9b6-8240a321e8e3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "5e0f4780-2754-48c8-8ab8-41c9f2b967c9" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T204253Z:5e0f4780-2754-48c8-8ab8-41c9f2b967c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:42:53 GMT" + ], + "Content-Length": [ + "738" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=true&api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uRGF0YWJhc2VzL3RhcmdldDEvbG9uZ1Rlcm1SZXRlbnRpb25NYW5hZ2VkSW5zdGFuY2VCYWNrdXBzP29ubHlMYXRlc3RQZXJEYXRhYmFzZT10cnVlJmFwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cc93d8c2-6651-4efe-83f9-6c1fb36827ed" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "53e4d885-a741-4b53-8790-8d7e0a7beeba" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "b3a0c725-2a93-43e6-acf1-4b54d98ad90d" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T204254Z:b3a0c725-2a93-43e6-acf1-4b54d98ad90d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:42:54 GMT" + ], + "Content-Length": [ + "750" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=true&databaseState=All&api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcz9vbmx5TGF0ZXN0UGVyRGF0YWJhc2U9dHJ1ZSZkYXRhYmFzZVN0YXRlPUFsbCZhcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e4c14f61-1add-438a-ae7f-658d8972d6ae" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "15293b5c-714b-4660-ba29-04c6d922d1aa" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "af0111ed-90f0-4cc0-b5a9-81f1b230ddb5" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T204254Z:af0111ed-90f0-4cc0-b5a9-81f1b230ddb5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:42:54 GMT" + ], + "Content-Length": [ + "12143" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-455\",\r\n \"backupTime\": \"2020-02-27T20:49:41Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:23:48.8462413Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-455/longTermRetentionManagedInstanceBackups/af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"name\": \"af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=true&api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy90YXJnZXQxL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcz9vbmx5TGF0ZXN0UGVyRGF0YWJhc2U9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5b30ee23-db0b-428e-b609-2e22d27815a6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "92200cd5-3095-43d5-a47e-a97222341bed" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "7cd62230-243d-470a-a6d5-e45605b65310" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T204255Z:7cd62230-243d-470a-a6d5-e45605b65310" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:42:55 GMT" + ], + "Content-Length": [ + "750" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3A/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "21d34565-bec7-4bc5-86ca-146a0761bc99" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "12faf28f-c712-4080-a25d-a257a0e85080" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "5b4c0d5f-909b-4099-8499-c2dc96698149" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T204256Z:5b4c0d5f-909b-4099-8499-c2dc96698149" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:42:55 GMT" + ], + "Content-Length": [ + "873" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 8\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"ps-test-mi.lkgt1aeda54f909eb.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"cloudSA\",\r\n \"subnetId\": \"/subscriptions/741fd0f5-9cb8-442c-91c3-3ef4ca231c2a/resourceGroups/cloudlifter/providers/Microsoft.ClassicNetwork/virtualNetworks/cloudlifter-runners-stage-sea/subnets/Gen5GeoDR\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 8,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"lkgt1aeda54f909eb\",\r\n \"publicDataEndpointEnabled\": true,\r\n \"proxyOverride\": \"Proxy\",\r\n \"timezoneId\": \"UTC\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi\",\r\n \"name\": \"ps-test-mi\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-restore-4b4c79c1-8647-40db-9c67-f2d5ccb3bb4d?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS00YjRjNzljMS04NjQ3LTQwZGItOWM2Ny1mMmQ1Y2NiM2JiNGQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"createMode\": \"RestoreLongTermRetentionBackup\",\r\n \"longTermRetentionBackupResourceId\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b8863fe5-dcba-4bd7-a8c2-57f376dc9c10" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "504" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/39a41ba9-6b8a-454b-a27d-234dda8b0366?api-version=2019-06-01-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/39a41ba9-6b8a-454b-a27d-234dda8b0366?api-version=2019-06-01-preview" + ], + "x-ms-request-id": [ + "39a41ba9-6b8a-454b-a27d-234dda8b0366" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "21365cb9-841f-4307-b0bc-7782ca4d72ad" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T204258Z:21365cb9-841f-4307-b0bc-7782ca4d72ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:42:58 GMT" + ], + "Content-Length": [ + "94" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateManagedRestoreFromLtrBackupRequest\",\r\n \"startTime\": \"2020-03-03T20:42:58.76Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/39a41ba9-6b8a-454b-a27d-234dda8b0366?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMzlhNDFiYTktNmI4YS00NTRiLWEyN2QtMjM0ZGRhOGIwMzY2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "8e313d52-9559-4268-a20f-412a02ee9870" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "ebbf6340-f728-4413-a738-ec6983a66b4f" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T204314Z:ebbf6340-f728-4413-a738-ec6983a66b4f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:43:14 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"39a41ba9-6b8a-454b-a27d-234dda8b0366\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T20:42:58.76Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/39a41ba9-6b8a-454b-a27d-234dda8b0366?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMzlhNDFiYTktNmI4YS00NTRiLWEyN2QtMjM0ZGRhOGIwMzY2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "92a34e69-e60c-49a4-97cf-1667aef9499f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "bc7adb10-3e6e-4d8f-8c70-8022636a2ff9" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T204329Z:bc7adb10-3e6e-4d8f-8c70-8022636a2ff9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:43:28 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"39a41ba9-6b8a-454b-a27d-234dda8b0366\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T20:42:58.76Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/39a41ba9-6b8a-454b-a27d-234dda8b0366?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMzlhNDFiYTktNmI4YS00NTRiLWEyN2QtMjM0ZGRhOGIwMzY2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "3d9f307d-ed1c-4142-877a-0d00337f3310" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "8f429dc6-3301-42de-9ffc-5ce54ff5465e" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T204345Z:8f429dc6-3301-42de-9ffc-5ce54ff5465e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:43:44 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"39a41ba9-6b8a-454b-a27d-234dda8b0366\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T20:42:58.76Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/39a41ba9-6b8a-454b-a27d-234dda8b0366?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMzlhNDFiYTktNmI4YS00NTRiLWEyN2QtMjM0ZGRhOGIwMzY2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "376bae17-5101-419b-8f4c-f793e7ec0e19" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "468c950a-8668-4f35-8bd8-5c1511642f5a" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T204401Z:468c950a-8668-4f35-8bd8-5c1511642f5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:44:00 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"39a41ba9-6b8a-454b-a27d-234dda8b0366\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T20:42:58.76Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/39a41ba9-6b8a-454b-a27d-234dda8b0366?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMzlhNDFiYTktNmI4YS00NTRiLWEyN2QtMjM0ZGRhOGIwMzY2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "9226b580-2153-4fd7-8e18-edc053666ee5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "15436b24-ae04-4e9c-8f6c-f8e001584df9" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T204416Z:15436b24-ae04-4e9c-8f6c-f8e001584df9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:44:15 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"39a41ba9-6b8a-454b-a27d-234dda8b0366\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-03T20:42:58.76Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-restore-4b4c79c1-8647-40db-9c67-f2d5ccb3bb4d?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS00YjRjNzljMS04NjQ3LTQwZGItOWM2Ny1mMmQ1Y2NiM2JiNGQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "dd0f2b54-66d6-4f67-818b-bf7c3aad8f1a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "43ed5e79-d1f8-43af-951f-3e3f971cb7e7" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T204416Z:43ed5e79-d1f8-43af-951f-3e3f971cb7e7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:44:16 GMT" + ], + "Content-Length": [ + "559" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-03T20:42:59.09Z\",\r\n \"earliestRestorePoint\": \"2020-03-03T20:44:09.143Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-restore-4b4c79c1-8647-40db-9c67-f2d5ccb3bb4d\",\r\n \"name\": \"ps-test-restore-4b4c79c1-8647-40db-9c67-f2d5ccb3bb4d\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-restore-4b4c79c1-8647-40db-9c67-f2d5ccb3bb4d?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS00YjRjNzljMS04NjQ3LTQwZGItOWM2Ny1mMmQ1Y2NiM2JiNGQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "75e29fa8-2f5c-4cab-b93e-5b94aa510abd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "98f3ed46-9b15-40e3-a6ed-0ce3686a853c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "130936bf-ce7e-4716-afe1-6afedac02661" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T204434Z:130936bf-ce7e-4716-afe1-6afedac02661" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:44:33 GMT" + ], + "Content-Length": [ + "559" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-03T20:42:59.09Z\",\r\n \"earliestRestorePoint\": \"2020-03-03T20:44:09.143Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-restore-4b4c79c1-8647-40db-9c67-f2d5ccb3bb4d\",\r\n \"name\": \"ps-test-restore-4b4c79c1-8647-40db-9c67-f2d5ccb3bb4d\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uRGF0YWJhc2VzL3NxbGNydWR0ZXN0LTgzMDUvbG9uZ1Rlcm1SZXRlbnRpb25NYW5hZ2VkSW5zdGFuY2VCYWNrdXBzP29ubHlMYXRlc3RQZXJEYXRhYmFzZT1mYWxzZSZhcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dbf31d9d-8de3-456b-9c96-9263ce435843" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "133c27fc-40ad-4933-a99a-8548d536ab32" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "72d158e7-a925-4cb6-9663-8b7fde99ff03" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T204417Z:72d158e7-a925-4cb6-9663-8b7fde99ff03" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:44:16 GMT" + ], + "Content-Length": [ + "776" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae%3B132273185790000000?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uRGF0YWJhc2VzL3NxbGNydWR0ZXN0LTgzMDUvbG9uZ1Rlcm1SZXRlbnRpb25NYW5hZ2VkSW5zdGFuY2VCYWNrdXBzLzUwODNkNjczLTIzOWQtNDMzYi1hYjMyLThkNTZiZDY5ZTlhZSUzQjEzMjI3MzE4NTc5MDAwMDAwMD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1f8c4bbd-fd21-4517-8304-11673f10a551" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "152aebc7-35e2-486c-ae02-ed8ee0addda2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "688ecd18-fa85-415c-b685-1ffd76ed17e9" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T204417Z:688ecd18-fa85-415c-b685-1ffd76ed17e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:44:16 GMT" + ], + "Content-Length": [ + "764" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae%3B132273185790000000?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uRGF0YWJhc2VzL3NxbGNydWR0ZXN0LTgzMDUvbG9uZ1Rlcm1SZXRlbnRpb25NYW5hZ2VkSW5zdGFuY2VCYWNrdXBzLzUwODNkNjczLTIzOWQtNDMzYi1hYjMyLThkNTZiZDY5ZTlhZSUzQjEzMjI3MzE4NTc5MDAwMDAwMD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "79517c13-d548-41f5-bd10-c62c60c8275d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackupOperationResults/f7c239ae-523d-43d5-926b-d20cb748848f?api-version=2018-06-01-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackupAzureAsyncOperation/f7c239ae-523d-43d5-926b-d20cb748848f?api-version=2018-06-01-preview" + ], + "x-ms-request-id": [ + "f7c239ae-523d-43d5-926b-d20cb748848f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "633775e6-7c0a-4b25-b697-efb3e2e93a54" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T204417Z:633775e6-7c0a-4b25-b697-efb3e2e93a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:44:17 GMT" + ], + "Content-Length": [ + "70" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"DeleteLTRBackup\",\r\n \"startTime\": \"2020-03-03T20:44:17.723Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackupAzureAsyncOperation/f7c239ae-523d-43d5-926b-d20cb748848f?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3VwQXp1cmVBc3luY09wZXJhdGlvbi9mN2MyMzlhZS01MjNkLTQzZDUtOTI2Yi1kMjBjYjc0ODg0OGY/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "d2cf383a-dc72-4da4-af91-ac288ef82a5c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "f04584a1-9eb8-4c98-9ccb-b45d724fd128" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T204433Z:f04584a1-9eb8-4c98-9ccb-b45d724fd128" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:44:32 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"f7c239ae-523d-43d5-926b-d20cb748848f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-03T20:44:17.723Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackupOperationResults/f7c239ae-523d-43d5-926b-d20cb748848f?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3VwT3BlcmF0aW9uUmVzdWx0cy9mN2MyMzlhZS01MjNkLTQzZDUtOTI2Yi1kMjBjYjc0ODg0OGY/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d7f778c7-4ca0-4b2f-a53f-fe478bab6945" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "4fb45c83-5790-4f1e-a716-b73e6391811e" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T204433Z:4fb45c83-5790-4f1e-a716-b73e6391811e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:44:33 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/sqlcrudtest-8305?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTgzMDU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f2567beb-0f46-457c-9c91-8dd9a6e2b564" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b426882c-580a-4153-b99b-cf2f15d98579" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-correlation-request-id": [ + "c6473734-e18a-4a21-9264-587b20d9e377" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T204434Z:c6473734-e18a-4a21-9264-587b20d9e377" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:44:33 GMT" + ], + "Content-Length": [ + "487" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-02-27T23:05:57.763Z\",\r\n \"earliestRestorePoint\": \"2020-02-27T23:09:41.63Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/sqlcrudtest-8305\",\r\n \"name\": \"sqlcrudtest-8305\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy9zcWxjcnVkdGVzdC04MzA1L2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcz9vbmx5TGF0ZXN0UGVyRGF0YWJhc2U9ZmFsc2UmYXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f682396b-75ca-42c0-89ba-41f2278adc1c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "766ce721-7459-4552-8ae2-f35df7cd4ecd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-correlation-request-id": [ + "d521bec4-688c-4b04-a272-35b92374ebc6" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T204434Z:d521bec4-688c-4b04-a272-35b92374ebc6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:44:33 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-restore-4b4c79c1-8647-40db-9c67-f2d5ccb3bb4d?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS00YjRjNzljMS04NjQ3LTQwZGItOWM2Ny1mMmQ1Y2NiM2JiNGQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ed8c0f80-33f6-4738-80d7-63cf451f7878" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/c578c703-d04c-47a4-a8cf-7bc6dce8cfca?api-version=2019-06-01-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/c578c703-d04c-47a4-a8cf-7bc6dce8cfca?api-version=2019-06-01-preview" + ], + "x-ms-request-id": [ + "c578c703-d04c-47a4-a8cf-7bc6dce8cfca" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "37e6c203-71bf-4ede-ab9c-fae8c84c92b4" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T204436Z:37e6c203-71bf-4ede-ab9c-fae8c84c92b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:44:36 GMT" + ], + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"DropManagedDatabase\",\r\n \"startTime\": \"2020-03-03T20:44:36.417Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/c578c703-d04c-47a4-a8cf-7bc6dce8cfca?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYzU3OGM3MDMtZDA0Yy00N2E0LWE4Y2YtN2JjNmRjZThjZmNhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "67aae556-c7ce-461e-a4a2-d215579577d2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "36aec274-5e9b-44ab-8790-efa2213fdb87" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T204452Z:36aec274-5e9b-44ab-8790-efa2213fdb87" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:44:52 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"c578c703-d04c-47a4-a8cf-7bc6dce8cfca\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-03T20:44:36.417Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/c578c703-d04c-47a4-a8cf-7bc6dce8cfca?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZU9wZXJhdGlvblJlc3VsdHMvYzU3OGM3MDMtZDA0Yy00N2E0LWE4Y2YtN2JjNmRjZThjZmNhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b0e548a4-8850-4777-9c50-d6e384584d42" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-correlation-request-id": [ + "594eb901-7f9d-4758-bd10-61db4eb85230" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T204452Z:594eb901-7f9d-4758-bd10-61db4eb85230" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 20:44:52 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "8cfb8b62-bcd6-4713-89ad-18097f75cc5b" + } +} \ No newline at end of file diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionPolicy.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionPolicy.json index 757fe666a6f3..997d2013ae33 100644 --- a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionPolicy.json +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionPolicy.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337?api-version=2019-06-01-preview", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337?api-version=2019-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3Rlc3QtZTE4NjUyZDAtOTlhNy00YmM3LTllYjMtNzMzYWUzZGFlMzM3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", @@ -57,11 +57,11 @@ "218" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337' under resource group 'cl_stage_sea_cv' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/managedInstances/ps-test-mi/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337' under resource group 'ps-test-rg' was not found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337?api-version=2019-06-01-preview", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337?api-version=2019-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3Rlc3QtZTE4NjUyZDAtOTlhNy00YmM3LTllYjMtNzMzYWUzZGFlMzM3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", @@ -114,11 +114,11 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-03T06:57:55.49Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"name\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-03T06:57:55.49Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"name\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi?api-version=2018-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3A/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", @@ -177,11 +177,11 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 8\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"seageodr-gen5-gp.lkgt1aeda54f909eb.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"cloudSA\",\r\n \"subnetId\": \"/subscriptions/741fd0f5-9cb8-442c-91c3-3ef4ca231c2a/resourceGroups/cloudlifter/providers/Microsoft.ClassicNetwork/virtualNetworks/cloudlifter-runners-stage-sea/subnets/Gen5GeoDR\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 8,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"lkgt1aeda54f909eb\",\r\n \"publicDataEndpointEnabled\": true,\r\n \"proxyOverride\": \"Proxy\",\r\n \"timezoneId\": \"UTC\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp\",\r\n \"name\": \"seageodr-gen5-gp\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 8\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"ps-test-mi.lkgt1aeda54f909eb.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"cloudSA\",\r\n \"subnetId\": \"/subscriptions/741fd0f5-9cb8-442c-91c3-3ef4ca231c2a/resourceGroups/cloudlifter/providers/Microsoft.ClassicNetwork/virtualNetworks/cloudlifter-runners-stage-sea/subnets/Gen5GeoDR\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 8,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"lkgt1aeda54f909eb\",\r\n \"publicDataEndpointEnabled\": true,\r\n \"proxyOverride\": \"Proxy\",\r\n \"timezoneId\": \"UTC\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi\",\r\n \"name\": \"ps-test-mi\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337?api-version=2019-06-01-preview", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337?api-version=2019-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3Rlc3QtZTE4NjUyZDAtOTlhNy00YmM3LTllYjMtNzMzYWUzZGFlMzM3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"southeastasia\"\r\n}", @@ -379,7 +379,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/backupLongTermRetentionPolicies/default?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/backupLongTermRetentionPolicies/default?api-version=2018-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3Rlc3QtZTE4NjUyZDAtOTlhNy00YmM3LTllYjMtNzMzYWUzZGFlMzM3L2JhY2t1cExvbmdUZXJtUmV0ZW50aW9uUG9saWNpZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", @@ -438,11 +438,11 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"weeklyRetention\": \"PT0S\",\r\n \"monthlyRetention\": \"PT0S\",\r\n \"yearlyRetention\": \"PT0S\",\r\n \"weekOfYear\": 0\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/backupLongTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicy\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"weeklyRetention\": \"PT0S\",\r\n \"monthlyRetention\": \"PT0S\",\r\n \"yearlyRetention\": \"PT0S\",\r\n \"weekOfYear\": 0\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/backupLongTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicy\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/backupLongTermRetentionPolicies/default?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/backupLongTermRetentionPolicies/default?api-version=2018-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3Rlc3QtZTE4NjUyZDAtOTlhNy00YmM3LTllYjMtNzMzYWUzZGFlMzM3L2JhY2t1cExvbmdUZXJtUmV0ZW50aW9uUG9saWNpZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", @@ -495,11 +495,11 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"weeklyRetention\": \"P1W\",\r\n \"monthlyRetention\": \"PT0S\",\r\n \"yearlyRetention\": \"PT0S\",\r\n \"weekOfYear\": 0\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/backupLongTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicy\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"weeklyRetention\": \"P1W\",\r\n \"monthlyRetention\": \"PT0S\",\r\n \"yearlyRetention\": \"PT0S\",\r\n \"weekOfYear\": 0\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/backupLongTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicy\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/backupLongTermRetentionPolicies/default?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/backupLongTermRetentionPolicies/default?api-version=2018-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3Rlc3QtZTE4NjUyZDAtOTlhNy00YmM3LTllYjMtNzMzYWUzZGFlMzM3L2JhY2t1cExvbmdUZXJtUmV0ZW50aW9uUG9saWNpZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", @@ -558,11 +558,11 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"weeklyRetention\": \"P1W\",\r\n \"monthlyRetention\": \"PT0S\",\r\n \"yearlyRetention\": \"PT0S\",\r\n \"weekOfYear\": 0\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/backupLongTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicy\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"weeklyRetention\": \"P1W\",\r\n \"monthlyRetention\": \"PT0S\",\r\n \"yearlyRetention\": \"PT0S\",\r\n \"weekOfYear\": 0\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/backupLongTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicy\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/backupLongTermRetentionPolicies/default?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/backupLongTermRetentionPolicies/default?api-version=2018-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3Rlc3QtZTE4NjUyZDAtOTlhNy00YmM3LTllYjMtNzMzYWUzZGFlMzM3L2JhY2t1cExvbmdUZXJtUmV0ZW50aW9uUG9saWNpZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"weeklyRetention\": \"P1W\",\r\n \"weekOfYear\": 0\r\n }\r\n}", @@ -594,13 +594,13 @@ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyOperationResults/a0624928-18b3-4696-a23f-19856493b7f5?api-version=2018-06-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyOperationResults/a0624928-18b3-4696-a23f-19856493b7f5?api-version=2018-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyAzureAsyncOperation/a0624928-18b3-4696-a23f-19856493b7f5?api-version=2018-06-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyAzureAsyncOperation/a0624928-18b3-4696-a23f-19856493b7f5?api-version=2018-06-01-preview" ], "x-ms-request-id": [ "a0624928-18b3-4696-a23f-19856493b7f5" @@ -640,7 +640,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyAzureAsyncOperation/a0624928-18b3-4696-a23f-19856493b7f5?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyAzureAsyncOperation/a0624928-18b3-4696-a23f-19856493b7f5?api-version=2018-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9tYW5hZ2VkSW5zdGFuY2VMb25nVGVybVJldGVudGlvblBvbGljeUF6dXJlQXN5bmNPcGVyYXRpb24vYTA2MjQ5MjgtMThiMy00Njk2LWEyM2YtMTk4NTY0OTNiN2Y1P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", @@ -700,7 +700,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyAzureAsyncOperation/a0624928-18b3-4696-a23f-19856493b7f5?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyAzureAsyncOperation/a0624928-18b3-4696-a23f-19856493b7f5?api-version=2018-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9tYW5hZ2VkSW5zdGFuY2VMb25nVGVybVJldGVudGlvblBvbGljeUF6dXJlQXN5bmNPcGVyYXRpb24vYTA2MjQ5MjgtMThiMy00Njk2LWEyM2YtMTk4NTY0OTNiN2Y1P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", @@ -760,7 +760,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyAzureAsyncOperation/a0624928-18b3-4696-a23f-19856493b7f5?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyAzureAsyncOperation/a0624928-18b3-4696-a23f-19856493b7f5?api-version=2018-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9tYW5hZ2VkSW5zdGFuY2VMb25nVGVybVJldGVudGlvblBvbGljeUF6dXJlQXN5bmNPcGVyYXRpb24vYTA2MjQ5MjgtMThiMy00Njk2LWEyM2YtMTk4NTY0OTNiN2Y1P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionResourceGroupBasedBackup.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionResourceGroupBasedBackup.json new file mode 100644 index 000000000000..0951c2d801d6 --- /dev/null +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionResourceGroupBasedBackup.json @@ -0,0 +1,1631 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZUJhY2t1cHM/b25seUxhdGVzdFBlckRhdGFiYXNlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9f691d7d-d99c-4d00-a74d-fc61051cbb80" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6cd2b76f-0576-41ae-8bad-0b2445c1e4a4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "a47a4924-706f-46c2-9c52-ef814fe1a216" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T213507Z:a47a4924-706f-46c2-9c52-ef814fe1a216" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 21:35:07 GMT" + ], + "Content-Length": [ + "12117" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-455\",\r\n \"backupTime\": \"2020-02-27T20:49:41Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:23:48.8462413Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-455/longTermRetentionManagedInstanceBackups/af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"name\": \"af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZUJhY2t1cHM/b25seUxhdGVzdFBlckRhdGFiYXNlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "56433c46-e84b-4ba9-9bf3-7a2a2b7c37e6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "abeb2214-e534-4495-bd03-c212fa3ba9e0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "27a4789f-9639-44ed-badb-46ff242d9d90" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T213512Z:27a4789f-9639-44ed-badb-46ff242d9d90" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 21:35:12 GMT" + ], + "Content-Length": [ + "12117" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-455\",\r\n \"backupTime\": \"2020-02-27T20:49:41Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:23:48.8462413Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-455/longTermRetentionManagedInstanceBackups/af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"name\": \"af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZUJhY2t1cHM/b25seUxhdGVzdFBlckRhdGFiYXNlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2528935e-4dd3-4bf1-96fc-03b271e1fd97" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d5b5ab7f-e4c5-4949-9c5f-8a624a9ad2ff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "dc715893-93b2-4a61-b40a-4aa489ff4722" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T213508Z:dc715893-93b2-4a61-b40a-4aa489ff4722" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 21:35:07 GMT" + ], + "Content-Length": [ + "12117" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-455\",\r\n \"backupTime\": \"2020-02-27T20:49:41Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:23:48.8462413Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-455/longTermRetentionManagedInstanceBackups/af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"name\": \"af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy90ZXN0L2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcz9vbmx5TGF0ZXN0UGVyRGF0YWJhc2U9ZmFsc2UmYXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "90ed0d35-91d6-464f-9ef5-e7f03f275a2d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "55f754fa-dd26-4747-8ac0-c661efe906af" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "e5fedd0b-4c2f-41b2-8ba6-b5af1367db3e" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T213508Z:e5fedd0b-4c2f-41b2-8ba6-b5af1367db3e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 21:35:07 GMT" + ], + "Content-Length": [ + "1543" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy90ZXN0L2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcz9vbmx5TGF0ZXN0UGVyRGF0YWJhc2U9ZmFsc2UmYXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "65a446ae-343d-4e6c-be32-560f694d62ce" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ee804c48-5432-4867-93a3-443aa03a77b5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "f72f8c2d-e344-4d2f-a2d4-b8b749ec6e1c" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T213509Z:f72f8c2d-e344-4d2f-a2d4-b8b749ec6e1c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 21:35:08 GMT" + ], + "Content-Length": [ + "1543" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94%3B132271661370000000?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy90ZXN0L2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcy80OTIzYTBjMS1iZmM0LTQ0ZTMtYmY4My0zZWEzZmM3NDFkOTQlM0IxMzIyNzE2NjEzNzAwMDAwMDA/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d677dd0-784e-4509-a1a9-c90c027c8e25" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7ef6b02d-6ed6-4e43-a4b1-2bedab172de4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "d0f92daf-a14b-451d-af11-2a5a05551c03" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T213509Z:d0f92daf-a14b-451d-af11-2a5a05551c03" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 21:35:08 GMT" + ], + "Content-Length": [ + "740" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94%3B132271661370000000?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy90ZXN0L2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcy80OTIzYTBjMS1iZmM0LTQ0ZTMtYmY4My0zZWEzZmM3NDFkOTQlM0IxMzIyNzE2NjEzNzAwMDAwMDA/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "93be1e20-61e9-4a3b-9c0e-37c12a6db69d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "84ea548c-cbb3-4154-993f-665faf3fbf3e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "eaa645d7-9783-44d5-ac27-fbe1c99c0095" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T213510Z:eaa645d7-9783-44d5-ac27-fbe1c99c0095" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 21:35:09 GMT" + ], + "Content-Length": [ + "740" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3Rlc3Q/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "75de341f-419e-40ef-bef8-5a33a09b4a56" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7155b9cc-2dde-44a1-875a-1d2e5e6c0bd8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "6808c916-7948-4e21-abd5-d79dd90460e3" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T213509Z:6808c916-7948-4e21-abd5-d79dd90460e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 21:35:08 GMT" + ], + "Content-Length": [ + "463" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-02-26T04:46:02.857Z\",\r\n \"earliestRestorePoint\": \"2020-02-26T04:49:01.92Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test\",\r\n \"name\": \"test\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3Rlc3Q/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5a9079c7-bb42-4e5b-850c-3b02cbe9fa43" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "dcd9cef4-3c57-4706-8be0-a72705a58407" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "5ca37d66-a1f2-4dad-8a97-4eee51056181" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T213510Z:5ca37d66-a1f2-4dad-8a97-4eee51056181" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 21:35:09 GMT" + ], + "Content-Length": [ + "463" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-02-26T04:46:02.857Z\",\r\n \"earliestRestorePoint\": \"2020-02-26T04:49:01.92Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test\",\r\n \"name\": \"test\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3Rlc3Q/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fa03bde7-cd80-4762-a221-0484beff310a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2967f1e3-60c6-4876-b1ad-49d117aabf6f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "f6598899-500f-491a-9de6-74fef84bebf3" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T213511Z:f6598899-500f-491a-9de6-74fef84bebf3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 21:35:11 GMT" + ], + "Content-Length": [ + "463" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-02-26T04:46:02.857Z\",\r\n \"earliestRestorePoint\": \"2020-02-26T04:49:01.92Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test\",\r\n \"name\": \"test\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=true&api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy90ZXN0L2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcz9vbmx5TGF0ZXN0UGVyRGF0YWJhc2U9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bc36ab25-9ae8-44e5-80de-b4ce22d99eb1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e9008c05-49ec-43b2-b885-69517516c556" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "31872112-5c0a-403b-8186-95ccf8b9b7b3" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T213510Z:31872112-5c0a-403b-8186-95ccf8b9b7b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 21:35:09 GMT" + ], + "Content-Length": [ + "1543" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=true&api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy90ZXN0L2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcz9vbmx5TGF0ZXN0UGVyRGF0YWJhc2U9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3488a582-1e4b-4d11-8105-253a3710a7cb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0a61ec02-595d-4a09-81d1-d16528ab170a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "f763395d-2034-4b73-9455-6645e21be42a" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T213512Z:f763395d-2034-4b73-9455-6645e21be42a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 21:35:11 GMT" + ], + "Content-Length": [ + "1543" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&databaseState=All&api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZUJhY2t1cHM/b25seUxhdGVzdFBlckRhdGFiYXNlPWZhbHNlJmRhdGFiYXNlU3RhdGU9QWxsJmFwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "81c068b6-3b90-4ef1-889d-235d6027c888" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "15ee0280-382e-4afd-b34d-a0f2ff60f01c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "2056ca1a-038e-497b-936a-e73bfb6a66be" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T213511Z:2056ca1a-038e-497b-936a-e73bfb6a66be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 21:35:11 GMT" + ], + "Content-Length": [ + "12117" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-455\",\r\n \"backupTime\": \"2020-02-27T20:49:41Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:23:48.8462413Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-455/longTermRetentionManagedInstanceBackups/af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"name\": \"af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3A/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c921773a-463d-42dd-a14b-af9524c71578" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "dee77413-71af-433d-83c0-6474860c1260" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "63fea1c5-7a9a-474e-8ef0-59f7d7821077" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T213512Z:63fea1c5-7a9a-474e-8ef0-59f7d7821077" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 21:35:12 GMT" + ], + "Content-Length": [ + "873" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 8\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"ps-test-mi.lkgt1aeda54f909eb.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"cloudSA\",\r\n \"subnetId\": \"/subscriptions/741fd0f5-9cb8-442c-91c3-3ef4ca231c2a/resourceGroups/cloudlifter/providers/Microsoft.ClassicNetwork/virtualNetworks/cloudlifter-runners-stage-sea/subnets/Gen5GeoDR\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 8,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"lkgt1aeda54f909eb\",\r\n \"publicDataEndpointEnabled\": true,\r\n \"proxyOverride\": \"Proxy\",\r\n \"timezoneId\": \"UTC\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi\",\r\n \"name\": \"ps-test-mi\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-rest-rg-d096425b-f6d3-4dc2-acdf-670ed823dfb1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdC1yZy1kMDk2NDI1Yi1mNmQzLTRkYzItYWNkZi02NzBlZDgyM2RmYjE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"createMode\": \"RestoreLongTermRetentionBackup\",\r\n \"longTermRetentionBackupResourceId\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "af34bac1-8d3e-4499-aa1a-273885c2b7b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "504" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/14458652-6e63-47f8-a321-8912a478b9ef?api-version=2019-06-01-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/14458652-6e63-47f8-a321-8912a478b9ef?api-version=2019-06-01-preview" + ], + "x-ms-request-id": [ + "14458652-6e63-47f8-a321-8912a478b9ef" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "7f28b47c-71b1-4179-9156-78b5477cf006" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T213514Z:7f28b47c-71b1-4179-9156-78b5477cf006" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 21:35:14 GMT" + ], + "Content-Length": [ + "94" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateManagedRestoreFromLtrBackupRequest\",\r\n \"startTime\": \"2020-03-03T21:35:14.25Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/14458652-6e63-47f8-a321-8912a478b9ef?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMTQ0NTg2NTItNmU2My00N2Y4LWEzMjEtODkxMmE0NzhiOWVmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "87735ac4-0583-4ec7-b7f1-0b97fb37c871" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "4df60cd1-b355-4447-9e8c-25ce3490ae84" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T213529Z:4df60cd1-b355-4447-9e8c-25ce3490ae84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 21:35:28 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"14458652-6e63-47f8-a321-8912a478b9ef\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T21:35:14.25Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/14458652-6e63-47f8-a321-8912a478b9ef?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMTQ0NTg2NTItNmU2My00N2Y4LWEzMjEtODkxMmE0NzhiOWVmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "14c4125e-0495-4d58-b63e-6d2e40bdc1d7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "70b57996-0ae9-4ff6-89f3-1727b8d36183" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T213545Z:70b57996-0ae9-4ff6-89f3-1727b8d36183" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 21:35:45 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"14458652-6e63-47f8-a321-8912a478b9ef\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T21:35:14.25Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/14458652-6e63-47f8-a321-8912a478b9ef?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMTQ0NTg2NTItNmU2My00N2Y4LWEzMjEtODkxMmE0NzhiOWVmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "e71507a4-ca3c-4b3b-8d4a-4d62b9f0a682" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "f7e07659-1b07-436d-a00c-412cac1c1eff" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T213601Z:f7e07659-1b07-436d-a00c-412cac1c1eff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 21:36:00 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"14458652-6e63-47f8-a321-8912a478b9ef\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T21:35:14.25Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/14458652-6e63-47f8-a321-8912a478b9ef?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMTQ0NTg2NTItNmU2My00N2Y4LWEzMjEtODkxMmE0NzhiOWVmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "7fd2bb2f-9624-4706-a7fb-6b6c7a10be01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "fc1f3194-65af-41d5-b7de-239757ff7554" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T213616Z:fc1f3194-65af-41d5-b7de-239757ff7554" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 21:36:15 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"14458652-6e63-47f8-a321-8912a478b9ef\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T21:35:14.25Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/14458652-6e63-47f8-a321-8912a478b9ef?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMTQ0NTg2NTItNmU2My00N2Y4LWEzMjEtODkxMmE0NzhiOWVmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "0c7d4c80-93fb-445c-924f-e2e85915b500" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "9da6e6fb-82e0-4457-89af-79ba09a6c76b" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T213631Z:9da6e6fb-82e0-4457-89af-79ba09a6c76b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 21:36:31 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"14458652-6e63-47f8-a321-8912a478b9ef\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-03T21:35:14.25Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-rest-rg-d096425b-f6d3-4dc2-acdf-670ed823dfb1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdC1yZy1kMDk2NDI1Yi1mNmQzLTRkYzItYWNkZi02NzBlZDgyM2RmYjE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "69f19805-703b-4b82-80f2-2e966da2fb3e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "d770e675-8b09-4795-b3fd-d21ecd8d9e69" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T213632Z:d770e675-8b09-4795-b3fd-d21ecd8d9e69" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 21:36:31 GMT" + ], + "Content-Length": [ + "510" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-03T21:35:14.563Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-rest-rg-d096425b-f6d3-4dc2-acdf-670ed823dfb1\",\r\n \"name\": \"ps-test-rest-rg-d096425b-f6d3-4dc2-acdf-670ed823dfb1\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-rest-rg-d096425b-f6d3-4dc2-acdf-670ed823dfb1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdC1yZy1kMDk2NDI1Yi1mNmQzLTRkYzItYWNkZi02NzBlZDgyM2RmYjE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "313dc8d3-db6f-4675-9867-7c87d84a505f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "724bf50b-1f4e-47c1-b0dd-8a3f7e6cdaec" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "bc136e53-a445-4e6e-8411-c57f0e595fbf" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T213632Z:bc136e53-a445-4e6e-8411-c57f0e595fbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 21:36:32 GMT" + ], + "Content-Length": [ + "510" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-03T21:35:14.563Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-rest-rg-d096425b-f6d3-4dc2-acdf-670ed823dfb1\",\r\n \"name\": \"ps-test-rest-rg-d096425b-f6d3-4dc2-acdf-670ed823dfb1\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-rest-rg-d096425b-f6d3-4dc2-acdf-670ed823dfb1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdC1yZy1kMDk2NDI1Yi1mNmQzLTRkYzItYWNkZi02NzBlZDgyM2RmYjE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88be70b8-45c2-4af1-9b48-bd5a4c500f6c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/2e45d33e-2b80-41a1-a551-72d54f0f8ecf?api-version=2019-06-01-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/2e45d33e-2b80-41a1-a551-72d54f0f8ecf?api-version=2019-06-01-preview" + ], + "x-ms-request-id": [ + "2e45d33e-2b80-41a1-a551-72d54f0f8ecf" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "b4d04cf7-e05f-478a-8a25-55ee033511dd" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T213632Z:b4d04cf7-e05f-478a-8a25-55ee033511dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 21:36:32 GMT" + ], + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"DropManagedDatabase\",\r\n \"startTime\": \"2020-03-03T21:36:32.803Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/2e45d33e-2b80-41a1-a551-72d54f0f8ecf?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMmU0NWQzM2UtMmI4MC00MWExLWE1NTEtNzJkNTRmMGY4ZWNmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "13c6c2df-b4de-4c11-8ca2-97e9b70d7ccf" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "af1d0441-4f77-42ed-8ebb-0257513651c1" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T213648Z:af1d0441-4f77-42ed-8ebb-0257513651c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 21:36:47 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"2e45d33e-2b80-41a1-a551-72d54f0f8ecf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T21:36:32.803Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/2e45d33e-2b80-41a1-a551-72d54f0f8ecf?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMmU0NWQzM2UtMmI4MC00MWExLWE1NTEtNzJkNTRmMGY4ZWNmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "aa1e27ee-d2d8-465b-bf45-ba34da723923" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "4aa17875-731d-43e3-84ad-a75fed337988" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T213703Z:4aa17875-731d-43e3-84ad-a75fed337988" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 21:37:03 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"2e45d33e-2b80-41a1-a551-72d54f0f8ecf\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-03T21:36:32.803Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/2e45d33e-2b80-41a1-a551-72d54f0f8ecf?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZU9wZXJhdGlvblJlc3VsdHMvMmU0NWQzM2UtMmI4MC00MWExLWE1NTEtNzJkNTRmMGY4ZWNmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "db4eb8b8-7754-474c-9837-3b66e8a11fe9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "5a88daf8-3c1e-4d8c-8b5f-888abcfb9fdc" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200303T213704Z:5a88daf8-3c1e-4d8c-8b5f-888abcfb9fdc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 21:37:03 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "8cfb8b62-bcd6-4713-89ad-18097f75cc5b" + } +} \ No newline at end of file From 19b7a14c0a23ebe56e1cf61d3a1a7f06e1a9e9b9 Mon Sep 17 00:00:00 2001 From: ziwa-msft Date: Tue, 3 Mar 2020 14:43:51 -0800 Subject: [PATCH 23/61] Added test recording --- .../ManagedInstanceCrudScenarioTests.ps1 | 7 +- ...eManagedInstanceWithMinimalTlsVersion.json | 953 ++++++++++++++++++ 2 files changed, 956 insertions(+), 4 deletions(-) create mode 100644 src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ServerCrudTests/TestCreateUpdateManagedInstanceWithMinimalTlsVersion.json diff --git a/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.ps1 b/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.ps1 index 491ebb2a547e..2d922e7e5294 100644 --- a/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.ps1 +++ b/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.ps1 @@ -375,7 +375,7 @@ function Test-CreateUpdateManagedInstanceWithMinimalTlsVersion $location = "eastus2euap" $rgName = "DejanDuVnetRG" $subnetId = "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/AndyPG/providers/Microsoft.Network/virtualNetworks/prepare-cl-nimilj/subnets/default" - $managedInstanceName = Get-ManagedInstanceName + $managedInstanceName = "ps123" $version = "12.0" $credentials = Get-ServerCredential $licenseType = "BasePrice" @@ -401,13 +401,12 @@ function Test-CreateUpdateManagedInstanceWithMinimalTlsVersion Assert-AreEqual $managedInstance1.ManagedInstanceName $managedInstanceName Assert-AreEqual $managedInstance1.MinimalTlsVersion $tls1_2 - $managedInstance2 = Set-AzSqlInstance -ResourceGroupName $rgName -Name $managedInstanceName ` - -MinimalTlsVersion $tls1_1 + $managedInstance2 = Set-AzSqlInstance -MinimalTlsVersion $tls1_1 -ResourceGroupName $rgName -Name "ps123" -Force Assert-AreEqual $managedInstance2.MinimalTlsVersion $tls1_1 } finally { - Remove-AzSqlInstance -ResourceGroupName $rgName -Name $$managedInstanceName -Force + Remove-AzSqlInstance -ResourceGroupName $rgName -Name $managedInstanceName -Force } } \ No newline at end of file diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ServerCrudTests/TestCreateUpdateManagedInstanceWithMinimalTlsVersion.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ServerCrudTests/TestCreateUpdateManagedInstanceWithMinimalTlsVersion.json new file mode 100644 index 000000000000..f591e35890ed --- /dev/null +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ServerCrudTests/TestCreateUpdateManagedInstanceWithMinimalTlsVersion.json @@ -0,0 +1,953 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/managedInstances/ps123?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL0RlamFuRHVWbmV0UkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9wczEyMz9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dcde42c0-8f33-4fbb-866c-f732c04f2c74" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "0a6d9a70-0dfc-4a2f-a006-81be49cdd379" + ], + "x-ms-correlation-request-id": [ + "0a6d9a70-0dfc-4a2f-a006-81be49cdd379" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200303T223614Z:0a6d9a70-0dfc-4a2f-a006-81be49cdd379" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 22:36:14 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "153" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/managedInstances/ps123' under resource group 'DejanDuVnetRG' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/managedInstances/ps123?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL0RlamFuRHVWbmV0UkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9wczEyMz9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2f014e6f-2442-442d-8ddd-26499bd1605d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "160ce1a3-b1d3-4cd7-b9b9-eca04ae7c2e1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200303T223917Z:160ce1a3-b1d3-4cd7-b9b9-eca04ae7c2e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 22:39:16 GMT" + ], + "Content-Length": [ + "847" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"ps123.422376eb3ada.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/AndyPG/providers/Microsoft.Network/virtualNetworks/prepare-cl-nimilj/subnets/default\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"BasePrice\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 128,\r\n \"collation\": \"Serbian_Cyrillic_100_CS_AS\",\r\n \"dnsZone\": \"422376eb3ada\",\r\n \"publicDataEndpointEnabled\": true,\r\n \"proxyOverride\": \"Proxy\",\r\n \"timezoneId\": \"Central Europe Standard Time\",\r\n \"minimalTlsVersion\": \"1.2\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/managedInstances/ps123\",\r\n \"name\": \"ps123\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/managedInstances/ps123?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL0RlamFuRHVWbmV0UkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9wczEyMz9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aaefb538-25bc-4af5-a2ab-ccda702b7bc6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "47f2ff78-8d96-4ef3-86c9-08a0c73132c4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "712fb336-2d14-465a-bf3a-3b1f92bb8940" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200303T223917Z:712fb336-2d14-465a-bf3a-3b1f92bb8940" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 22:39:17 GMT" + ], + "Content-Length": [ + "847" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"ps123.422376eb3ada.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/AndyPG/providers/Microsoft.Network/virtualNetworks/prepare-cl-nimilj/subnets/default\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"BasePrice\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 128,\r\n \"collation\": \"Serbian_Cyrillic_100_CS_AS\",\r\n \"dnsZone\": \"422376eb3ada\",\r\n \"publicDataEndpointEnabled\": true,\r\n \"proxyOverride\": \"Proxy\",\r\n \"timezoneId\": \"Central Europe Standard Time\",\r\n \"minimalTlsVersion\": \"1.2\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/managedInstances/ps123\",\r\n \"name\": \"ps123\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/managedInstances/ps123?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL0RlamFuRHVWbmV0UkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9wczEyMz9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2f3daebe-bae8-4c8d-80db-f0fbe8d883f7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8e7e204f-d290-41cb-ac9b-1d0b365a4bd9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "44905bc2-c6ac-4af6-bf9b-43995f9a60e0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200303T223917Z:44905bc2-c6ac-4af6-bf9b-43995f9a60e0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 22:39:17 GMT" + ], + "Content-Length": [ + "847" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"ps123.422376eb3ada.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/AndyPG/providers/Microsoft.Network/virtualNetworks/prepare-cl-nimilj/subnets/default\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"BasePrice\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 128,\r\n \"collation\": \"Serbian_Cyrillic_100_CS_AS\",\r\n \"dnsZone\": \"422376eb3ada\",\r\n \"publicDataEndpointEnabled\": true,\r\n \"proxyOverride\": \"Proxy\",\r\n \"timezoneId\": \"Central Europe Standard Time\",\r\n \"minimalTlsVersion\": \"1.2\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/managedInstances/ps123\",\r\n \"name\": \"ps123\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/managedInstances/ps123?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL0RlamFuRHVWbmV0UkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9wczEyMz9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bab6e522-7da7-47f1-854a-10c82c628657" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "7381623c-702e-46a9-9ba8-6f34f0c2b5c0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200303T224018Z:7381623c-702e-46a9-9ba8-6f34f0c2b5c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 22:40:18 GMT" + ], + "Content-Length": [ + "853" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"ps123.422376eb3ada.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/AndyPG/providers/Microsoft.Network/virtualNetworks/prepare-cl-nimilj/subnets/default\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 128,\r\n \"collation\": \"Serbian_Cyrillic_100_CS_AS\",\r\n \"dnsZone\": \"422376eb3ada\",\r\n \"publicDataEndpointEnabled\": true,\r\n \"proxyOverride\": \"Proxy\",\r\n \"timezoneId\": \"Central Europe Standard Time\",\r\n \"minimalTlsVersion\": \"1.1\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/managedInstances/ps123\",\r\n \"name\": \"ps123\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/managedInstances/ps123?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL0RlamFuRHVWbmV0UkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9wczEyMz9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "144c26d1-c554-43e1-aa33-d230174449a4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "58317732-5e0f-451c-a7cd-709884990403" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "0b776b54-819b-4d94-aa0a-e01f13755df3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200303T224018Z:0b776b54-819b-4d94-aa0a-e01f13755df3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 22:40:18 GMT" + ], + "Content-Length": [ + "853" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"ps123.422376eb3ada.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/AndyPG/providers/Microsoft.Network/virtualNetworks/prepare-cl-nimilj/subnets/default\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 128,\r\n \"collation\": \"Serbian_Cyrillic_100_CS_AS\",\r\n \"dnsZone\": \"422376eb3ada\",\r\n \"publicDataEndpointEnabled\": true,\r\n \"proxyOverride\": \"Proxy\",\r\n \"timezoneId\": \"Central Europe Standard Time\",\r\n \"minimalTlsVersion\": \"1.1\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/managedInstances/ps123\",\r\n \"name\": \"ps123\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/managedInstances/ps123?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL0RlamFuRHVWbmV0UkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9wczEyMz9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\"\r\n },\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/AndyPG/providers/Microsoft.Network/virtualNetworks/prepare-cl-nimilj/subnets/default\",\r\n \"licenseType\": \"BasePrice\",\r\n \"vCores\": 4,\r\n \"storageSizeInGB\": 128,\r\n \"collation\": \"Serbian_Cyrillic_100_CS_AS\",\r\n \"publicDataEndpointEnabled\": true,\r\n \"proxyOverride\": \"Proxy\",\r\n \"timezoneId\": \"Central Europe Standard Time\",\r\n \"minimalTlsVersion\": \"1.2\"\r\n },\r\n \"location\": \"eastus2euap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e4c8b78f-6a3b-4cc5-bb46-27fc3f520d95" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "651" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/locations/eastus2euap/managedInstanceOperationResults/65bb3c7b-a7a2-4832-a970-394b5f520d58?api-version=2018-06-01-preview" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/locations/eastus2euap/managedInstanceAzureAsyncOperation/65bb3c7b-a7a2-4832-a970-394b5f520d58?api-version=2018-06-01-preview" + ], + "x-ms-request-id": [ + "65bb3c7b-a7a2-4832-a970-394b5f520d58" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "ad751338-e271-46fe-ba56-44e6086e489d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200303T223616Z:ad751338-e271-46fe-ba56-44e6086e489d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 22:36:15 GMT" + ], + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"UpsertManagedServer\",\r\n \"startTime\": \"2020-03-03T22:36:16.103Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/managedInstances/ps123?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL0RlamFuRHVWbmV0UkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9wczEyMz9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\"\r\n },\r\n \"properties\": {\r\n \"storageSizeInGB\": 128,\r\n \"minimalTlsVersion\": \"1.1\"\r\n },\r\n \"location\": \"eastus2euap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f7d42399-283c-4726-84ef-9b1df70606a6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "191" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/locations/eastus2euap/managedInstanceOperationResults/069dd799-8903-4707-8131-b234a8acca54?api-version=2018-06-01-preview" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/locations/eastus2euap/managedInstanceAzureAsyncOperation/069dd799-8903-4707-8131-b234a8acca54?api-version=2018-06-01-preview" + ], + "x-ms-request-id": [ + "069dd799-8903-4707-8131-b234a8acca54" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "f1fb027a-17e9-4c95-aaed-333f173d5375" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200303T223918Z:f1fb027a-17e9-4c95-aaed-333f173d5375" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 22:39:17 GMT" + ], + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"UpsertManagedServer\",\r\n \"startTime\": \"2020-03-03T22:39:18.133Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/locations/eastus2euap/managedInstanceAzureAsyncOperation/65bb3c7b-a7a2-4832-a970-394b5f520d58?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL0RlamFuRHVWbmV0UkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czJldWFwL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vNjViYjNjN2ItYTdhMi00ODMyLWE5NzAtMzk0YjVmNTIwZDU4P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "00eef2df-b1b9-4d8b-9751-0c5a0238de3a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "b731c34b-2ae7-4b22-9d8e-7ba8d5686710" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200303T223716Z:b731c34b-2ae7-4b22-9d8e-7ba8d5686710" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 22:37:16 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"65bb3c7b-a7a2-4832-a970-394b5f520d58\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T22:36:16.103Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/locations/eastus2euap/managedInstanceAzureAsyncOperation/65bb3c7b-a7a2-4832-a970-394b5f520d58?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL0RlamFuRHVWbmV0UkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czJldWFwL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vNjViYjNjN2ItYTdhMi00ODMyLWE5NzAtMzk0YjVmNTIwZDU4P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "6e08853b-8cf9-4065-bed9-eb1c2066a9b3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "711ff4c4-3d3b-4e3c-98ce-9f9fbe8476e9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200303T223817Z:711ff4c4-3d3b-4e3c-98ce-9f9fbe8476e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 22:38:16 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"65bb3c7b-a7a2-4832-a970-394b5f520d58\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T22:36:16.103Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/locations/eastus2euap/managedInstanceAzureAsyncOperation/65bb3c7b-a7a2-4832-a970-394b5f520d58?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL0RlamFuRHVWbmV0UkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czJldWFwL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vNjViYjNjN2ItYTdhMi00ODMyLWE5NzAtMzk0YjVmNTIwZDU4P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "8e88c3e1-7700-4997-8401-bd8bf5c48445" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "5570a758-b4a6-48a8-9692-8e69d3844bde" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200303T223917Z:5570a758-b4a6-48a8-9692-8e69d3844bde" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 22:39:16 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"65bb3c7b-a7a2-4832-a970-394b5f520d58\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-03T22:36:16.103Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/locations/eastus2euap/managedInstanceAzureAsyncOperation/069dd799-8903-4707-8131-b234a8acca54?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL0RlamFuRHVWbmV0UkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czJldWFwL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vMDY5ZGQ3OTktODkwMy00NzA3LTgxMzEtYjIzNGE4YWNjYTU0P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "41ba81d6-2e56-4f53-bf87-c36553eda1ed" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "98c8afb2-0781-4057-9ee0-f636630b2efb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200303T224018Z:98c8afb2-0781-4057-9ee0-f636630b2efb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 22:40:18 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"069dd799-8903-4707-8131-b234a8acca54\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-03T22:39:18.133Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/managedInstances/ps123?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL0RlamFuRHVWbmV0UkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9wczEyMz9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a94d01e-3377-40ac-99aa-2e614d56ce2e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/locations/eastus2euap/managedInstanceOperationResults/e947d54e-ef19-478e-9bd2-fbc38d6dee32?api-version=2018-06-01-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/locations/eastus2euap/managedInstanceAzureAsyncOperation/e947d54e-ef19-478e-9bd2-fbc38d6dee32?api-version=2018-06-01-preview" + ], + "x-ms-request-id": [ + "e947d54e-ef19-478e-9bd2-fbc38d6dee32" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "d157af94-5f07-4618-b607-9fc49f22b244" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200303T224019Z:d157af94-5f07-4618-b607-9fc49f22b244" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 22:40:19 GMT" + ], + "Content-Length": [ + "72" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"DropManagedServer\",\r\n \"startTime\": \"2020-03-03T22:40:19.043Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/locations/eastus2euap/managedInstanceAzureAsyncOperation/e947d54e-ef19-478e-9bd2-fbc38d6dee32?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL0RlamFuRHVWbmV0UkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czJldWFwL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZTk0N2Q1NGUtZWYxOS00NzhlLTliZDItZmJjMzhkNmRlZTMyP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "94f56f80-60c8-4b66-af10-75c2b71f1712" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "57ebaf3f-19fc-4ea8-b74b-7d7815cea9fc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200303T224034Z:57ebaf3f-19fc-4ea8-b74b-7d7815cea9fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 22:40:34 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e947d54e-ef19-478e-9bd2-fbc38d6dee32\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-03T22:40:19.043Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/DejanDuVnetRG/providers/Microsoft.Sql/locations/eastus2euap/managedInstanceOperationResults/e947d54e-ef19-478e-9bd2-fbc38d6dee32?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL0RlamFuRHVWbmV0UkcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL2Vhc3R1czJldWFwL21hbmFnZWRJbnN0YW5jZU9wZXJhdGlvblJlc3VsdHMvZTk0N2Q1NGUtZWYxOS00NzhlLTliZDItZmJjMzhkNmRlZTMyP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d673676e-b544-4d98-a219-e3846618fae3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "5dbd4eff-3704-49f1-b26f-92f47b271658" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200303T224034Z:5dbd4eff-3704-49f1-b26f-92f47b271658" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Mar 2020 22:40:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "a8c9a924-06c0-4bde-9788-e7b1370969e1" + } +} \ No newline at end of file From 65f674a8bfaa91be261ce90f38e1daa3dd579b3b Mon Sep 17 00:00:00 2001 From: ziwa-msft Date: Tue, 3 Mar 2020 14:47:22 -0800 Subject: [PATCH 24/61] Update changelog --- src/Sql/Sql/ChangeLog.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Sql/Sql/ChangeLog.md b/src/Sql/Sql/ChangeLog.md index 8d46cec92d70..2da03284b2f7 100644 --- a/src/Sql/Sql/ChangeLog.md +++ b/src/Sql/Sql/ChangeLog.md @@ -19,6 +19,8 @@ --> ## Upcoming Release * Added PublicNetworkAccess to New-AzSqlServer and Set-AzSqlServer +* Added MinimalTlsVersion to New-AzSqlServer and Set-AzSqlServer +* Added MinimalTlsVersion to New-AzSqlInstance and Set-AzSqlInstance ## Version 2.3.0 * Added support for cross subscription point in time restore on Managed Instances. From c6301f65a22d55d5565743d4d8adc0687bfc57e9 Mon Sep 17 00:00:00 2001 From: ziwa-msft Date: Tue, 3 Mar 2020 14:53:05 -0800 Subject: [PATCH 25/61] trivial fix --- .../ScenarioTests/ManagedInstanceCrudScenarioTests.ps1 | 9 +++------ src/Sql/Sql.Test/ScenarioTests/ServerCrudTests.ps1 | 2 +- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.ps1 b/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.ps1 index 2d922e7e5294..bd7900b22385 100644 --- a/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.ps1 +++ b/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.ps1 @@ -38,7 +38,7 @@ function Test-CreateManagedInstance $collation = "Serbian_Cyrillic_100_CS_AS" $timezoneId = "Central Europe Standard Time" $proxyOverride = "Proxy" - $minimalTlsVersion = "1.2" + try { # Setup VNET @@ -49,7 +49,7 @@ function Test-CreateManagedInstance $job = New-AzSqlInstance -ResourceGroupName $rg.ResourceGroupName -Name $managedInstanceName ` -Location $rg.Location -AdministratorCredential $credentials -SubnetId $subnetId ` -LicenseType $licenseType -StorageSizeInGB $storageSizeInGB -Vcore $vCore -SkuName $skuName -Collation $collation ` - -TimezoneId $timezoneId -PublicDataEndpointEnabled -ProxyOverride $proxyOverride -MinimalTlsVersion $minimalTlsVersion -AsJob + -TimezoneId $timezoneId -PublicDataEndpointEnabled -ProxyOverride $proxyOverride -AsJob $job | Wait-Job $managedInstance1 = $job.Output @@ -66,7 +66,6 @@ function Test-CreateManagedInstance Assert-AreEqual $managedInstance1.TimezoneId $timezoneId Assert-AreEqual $managedInstance1.PublicDataEndpointEnabled $true Assert-AreEqual $managedInstance1.ProxyOverride $proxyOverride - Assert-AreEqual $managedInstance1.MinimalTlsVersion $minimalTlsVersion Assert-StartsWith ($managedInstance1.ManagedInstanceName + ".") $managedInstance1.FullyQualifiedDomainName Assert-NotNull $managedInstance1.DnsZone @@ -178,11 +177,10 @@ function Test-SetManagedInstance $vCore = 16 $publicDataEndpointEnabled = $true $proxyOverride = "Proxy" - $minimalTlsVersion = "1.2" $managedInstance4 = Set-AzSqlInstance -ResourceId $managedInstance.Id ` -AdministratorPassword $credentials.Password -LicenseType $licenseType -StorageSizeInGB $storageSizeInGB -Vcore $vCore ` - -PublicDataEndpointEnabled $publicDataEndpointEnabled -ProxyOverride $proxyOverride -MinimalTlsVersion $minimalTlsVersion -Force + -PublicDataEndpointEnabled $publicDataEndpointEnabled -ProxyOverride $proxyOverride -Force Assert-AreEqual $managedInstance4.ManagedInstanceName $managedInstance.ManagedInstanceName Assert-AreEqual $managedInstance4.AdministratorLogin $managedInstance.AdministratorLogin @@ -191,7 +189,6 @@ function Test-SetManagedInstance Assert-AreEqual $managedInstance4.StorageSizeInGB $storageSizeInGB Assert-AreEqual $managedInstance4.PublicDataEndpointEnabled $publicDataEndpointEnabled Assert-AreEqual $managedInstance4.ProxyOverride $proxyOverride - Assert-AreEqual $managedInstance4.MinimalTlsVersion $minimalTlsVersion Assert-StartsWith ($managedInstance4.ManagedInstanceName + ".") $managedInstance4.FullyQualifiedDomainName # Test hardware generation change using ComputeGeneration diff --git a/src/Sql/Sql.Test/ScenarioTests/ServerCrudTests.ps1 b/src/Sql/Sql.Test/ScenarioTests/ServerCrudTests.ps1 index e27f2e36c733..75b2438f9d0d 100644 --- a/src/Sql/Sql.Test/ScenarioTests/ServerCrudTests.ps1 +++ b/src/Sql/Sql.Test/ScenarioTests/ServerCrudTests.ps1 @@ -33,7 +33,7 @@ function Test-CreateServer { # With all parameters $job = New-AzSqlServer -ResourceGroupName $rg.ResourceGroupName -ServerName $serverName ` - -Location $rg.Location -ServerVersion $version -SqlAdministratorCredentials $credentials -MinimalTlsVersion $minimalTlsVersion -AsJob + -Location $rg.Location -ServerVersion $version -SqlAdministratorCredentials $credentials -AsJob $job | Wait-Job $server1 = $job.Output From c7057606a0ba91227df3fe3a14e20c120fd88173 Mon Sep 17 00:00:00 2001 From: ziwa-msft Date: Tue, 3 Mar 2020 16:09:22 -0800 Subject: [PATCH 26/61] fix helpn files --- src/Sql/Sql/help/New-AzSqlInstance.md | 1 + src/Sql/Sql/help/New-AzSqlServer.md | 1 + src/Sql/Sql/help/Set-AzSqlInstance.md | 1 + src/Sql/Sql/help/Set-AzSqlServer.md | 1 + 4 files changed, 4 insertions(+) diff --git a/src/Sql/Sql/help/New-AzSqlInstance.md b/src/Sql/Sql/help/New-AzSqlInstance.md index 0730cd786333..b792f12153c5 100644 --- a/src/Sql/Sql/help/New-AzSqlInstance.md +++ b/src/Sql/Sql/help/New-AzSqlInstance.md @@ -321,6 +321,7 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False +``` ### -InstancePoolName The instance pool to place this instance in. diff --git a/src/Sql/Sql/help/New-AzSqlServer.md b/src/Sql/Sql/help/New-AzSqlServer.md index b1e4dca86c18..5c41748d7d0a 100644 --- a/src/Sql/Sql/help/New-AzSqlServer.md +++ b/src/Sql/Sql/help/New-AzSqlServer.md @@ -192,6 +192,7 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False +``` ### -Tags Key-value pairs in the form of a hash table. For example: diff --git a/src/Sql/Sql/help/Set-AzSqlInstance.md b/src/Sql/Sql/help/Set-AzSqlInstance.md index 30e4ac7dd7c0..a042febb7908 100644 --- a/src/Sql/Sql/help/Set-AzSqlInstance.md +++ b/src/Sql/Sql/help/Set-AzSqlInstance.md @@ -308,6 +308,7 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False +``` ### -ResourceGroupName The name of the resource group. diff --git a/src/Sql/Sql/help/Set-AzSqlServer.md b/src/Sql/Sql/help/Set-AzSqlServer.md index f9a2b188b917..948da7a9da59 100644 --- a/src/Sql/Sql/help/Set-AzSqlServer.md +++ b/src/Sql/Sql/help/Set-AzSqlServer.md @@ -181,6 +181,7 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False +``` ### -Tags Specifies a dictionary of tags that this cmdlet associates with the server. Key-value pairs in the From dcd7a5db73839e4f9b368d520513987e1e1c7adb Mon Sep 17 00:00:00 2001 From: ziwa-msft Date: Tue, 3 Mar 2020 17:24:03 -0800 Subject: [PATCH 27/61] fixing test failuires --- .../ScenarioTests/AdvancedDataSecurityManagedInstanceTests.cs | 3 ++- src/Sql/Sql.Test/ScenarioTests/DataClassificationTests.cs | 3 ++- src/Sql/Sql.Test/ScenarioTests/DataSyncTests.cs | 3 ++- src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.cs | 3 ++- .../ScenarioTests/ManagedDatabaseCrudScenarioTests.cs | 4 +++- .../Sql.Test/ScenarioTests/VulnerabilityAssessmentMiTests.cs | 3 ++- 6 files changed, 13 insertions(+), 6 deletions(-) diff --git a/src/Sql/Sql.Test/ScenarioTests/AdvancedDataSecurityManagedInstanceTests.cs b/src/Sql/Sql.Test/ScenarioTests/AdvancedDataSecurityManagedInstanceTests.cs index d92049c6dd49..8258c35b0e4d 100644 --- a/src/Sql/Sql.Test/ScenarioTests/AdvancedDataSecurityManagedInstanceTests.cs +++ b/src/Sql/Sql.Test/ScenarioTests/AdvancedDataSecurityManagedInstanceTests.cs @@ -34,7 +34,8 @@ protected override void SetupManagementClients(RestTestFramework.MockContext con public AdvancedDataSecurityManagedInstanceTests(ITestOutputHelper output) : base(output) { base.resourceTypesToIgnoreApiVersion = new string[] { - "Microsoft.Sql/managedInstances" + "Microsoft.Sql/managedInstances", + "Microsoft.Sql/managedInstances/databases" }; } diff --git a/src/Sql/Sql.Test/ScenarioTests/DataClassificationTests.cs b/src/Sql/Sql.Test/ScenarioTests/DataClassificationTests.cs index 2d833b1e68df..778075bf92d7 100644 --- a/src/Sql/Sql.Test/ScenarioTests/DataClassificationTests.cs +++ b/src/Sql/Sql.Test/ScenarioTests/DataClassificationTests.cs @@ -25,7 +25,8 @@ public DataClassificationTests(ITestOutputHelper output) : base(output) { base.resourceTypesToIgnoreApiVersion = new string[] { "Microsoft.Sql/managedInstances", - "Microsoft.Sql/servers" + "Microsoft.Sql/servers", + "Microsoft.Sql/managedInstances/databases" }; } diff --git a/src/Sql/Sql.Test/ScenarioTests/DataSyncTests.cs b/src/Sql/Sql.Test/ScenarioTests/DataSyncTests.cs index f6c17dfd9061..e1293a169d65 100644 --- a/src/Sql/Sql.Test/ScenarioTests/DataSyncTests.cs +++ b/src/Sql/Sql.Test/ScenarioTests/DataSyncTests.cs @@ -27,7 +27,8 @@ public DataSyncTests(ITestOutputHelper output) : base(output) XunitTracingInterceptor.AddToContext(new XunitTracingInterceptor(output)); base.resourceTypesToIgnoreApiVersion = new string[] { - "Microsoft.Sql/servers" + "Microsoft.Sql/servers", + "Microsoft.Sql/managedInstances/databases" }; } diff --git a/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.cs b/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.cs index dbfc6790c092..2127cc4ec3f5 100644 --- a/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.cs +++ b/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.cs @@ -34,7 +34,8 @@ protected override void SetupManagementClients(RestTestFramework.MockContext con public ManagedDatabaseBackupTests(ITestOutputHelper output) : base(output) { base.resourceTypesToIgnoreApiVersion = new string[] { - "Microsoft.Sql/managedInstances" + "Microsoft.Sql/managedInstances", + "Microsoft.Sql/managedInstances/databases" }; } diff --git a/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseCrudScenarioTests.cs b/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseCrudScenarioTests.cs index 0d18cbc77ecf..a78752731c67 100644 --- a/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseCrudScenarioTests.cs +++ b/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseCrudScenarioTests.cs @@ -35,7 +35,9 @@ protected override void SetupManagementClients(RestTestFramework.MockContext con public ManagedDatabaseCrudScenarioTests(ITestOutputHelper output) : base(output) { base.resourceTypesToIgnoreApiVersion = new string[] { - "Microsoft.Sql/managedInstances" + "Microsoft.Sql/managedInstances", + "Microsoft.Sql/managedInstances/databases", + "Microsoft.Network/virtualNetworks" }; } diff --git a/src/Sql/Sql.Test/ScenarioTests/VulnerabilityAssessmentMiTests.cs b/src/Sql/Sql.Test/ScenarioTests/VulnerabilityAssessmentMiTests.cs index fd773e83d108..5c4b2f4a56a7 100644 --- a/src/Sql/Sql.Test/ScenarioTests/VulnerabilityAssessmentMiTests.cs +++ b/src/Sql/Sql.Test/ScenarioTests/VulnerabilityAssessmentMiTests.cs @@ -34,7 +34,8 @@ protected override void SetupManagementClients(RestTestFramework.MockContext con public VulnerabilityAssessmentMiTests(ITestOutputHelper output) : base(output) { base.resourceTypesToIgnoreApiVersion = new string[] { - "Microsoft.Sql/managedInstances" + "Microsoft.Sql/managedInstances", + "Microsoft.Sql/managedInstances/databases" }; } From 52ce17ad69d6e8c248ae86a275f557fd24dde267 Mon Sep 17 00:00:00 2001 From: xaliciayang Date: Tue, 3 Mar 2020 17:57:24 -0800 Subject: [PATCH 28/61] some fixes in remove backup; redid session records, minor fixes throughout --- .../ManagedDatabaseBackupTests.ps1 | 32 +- ...anagedInstanceLongTermRetentionBackup.json | 694 +++++++++--------- ...anagedInstanceLongTermRetentionPolicy.json | 348 ++++----- ...TermRetentionResourceGroupBasedBackup.json | 590 ++++++++------- .../Cmdlet/RestoreAzureRMSqlDatabase.cs | 2 +- ...lManagedDatabaseLongTermRetentionBackup.cs | 6 +- .../Cmdlet/RestoreAzureSqlManagedDatabase.cs | 16 +- src/Sql/Sql/Properties/Resources.Designer.cs | 40 +- src/Sql/Sql/Properties/Resources.resx | 6 + 9 files changed, 891 insertions(+), 843 deletions(-) diff --git a/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.ps1 b/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.ps1 index 12d2b31f18ac..507b73ca52fa 100644 --- a/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.ps1 +++ b/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.ps1 @@ -88,6 +88,10 @@ function Test-ManagedLiveDatabaseShortTermRetentionPolicy } } +<# + .SYNOPSIS + Test LTR Policy functions for MI +#> function Test-ManagedDeletedDatabaseShortTermRetentionPolicy { # Setup @@ -181,15 +185,15 @@ function Test-ManagedDeletedDatabaseShortTermRetentionPolicy function Test-ManagedInstanceLongTermRetentionPolicy($location = "southeastasia") { # Setup - $resourceGroupName = "cl_stage_sea_cv" - $managedInstanceName = "seageodr-gen5-gp" + $resourceGroupName = "ps-test-rg" + $managedInstanceName = "ps-test-mi" $weeklyRetention = "P1W" $zeroRetention = "PT0S" try { # create test database - $databaseName = "test-$(New-Guid)" + $databaseName = "ps-ltr-policy-test" $database = New-AzSqlInstanceDatabase -ResourceGroupName $resourceGroupName -InstanceName $managedInstanceName -Name $databaseName Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy -ResourceGroupName $resourceGroupName -InstanceName $managedInstanceName -DatabaseName $databaseName -WeeklyRetention $weeklyRetention @@ -217,11 +221,11 @@ function Test-ManagedInstanceLongTermRetentionBackup # Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy -ResourceGroup $resourceGroup -ServerName $serverName -DatabaseName $databaseName -WeeklyRetention P1W # Wait about 18 hours until it gets properly copied and you see the backup when run get backups, for example: # Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -InstanceName $managedInstanceName -DatabaeName $databaseName - $resourceGroup = "cl_stage_sea_cv" + $resourceGroup = "ps-test-rg" $locationName = "southeastasia" - $managedInstanceName = "seageodr-gen5-gp" + $managedInstanceName = "ps-test-mi" $databaseName = "target1" - $databaseWithRemovableBackup = "sqlcrudtest-8305"; + $databaseWithRemovableBackup = "test"; # Basic Get Tests $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName @@ -233,12 +237,6 @@ function Test-ManagedInstanceLongTermRetentionBackup $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -InstanceName $managedInstanceName -DatabaseName $databaseName -BackupName $backups[0].BackupName Assert-AreNotEqual $backups.Count 0 - # Test Get Piping - $backups = Get-AzSqlInstanceDatabase -ResourceGroup $resourceGroup -InstanceName $managedInstanceName -Name $databaseName | Get-AzSqlInstanceDatabaseLongTermRetentionBackup - Assert-AreNotEqual $backups.Count 0 - $backups = Get-AzSqlInstanceDatabase -ResourceGroup $resourceGroup -InstanceName $managedInstanceName -Name $databaseName | Get-AzSqlInstanceDatabaseLongTermRetentionBackup -BackupName $backups[0].BackupName - Assert-AreNotEqual $backups.Count 0 - # Test Get Optional Parameters $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -InstanceName $managedInstanceName -DatabaseName $databaseName -OnlyLatestPerDatabase Assert-AreNotEqual $backups.Count 0 @@ -251,11 +249,11 @@ function Test-ManagedInstanceLongTermRetentionBackup # Restore Test $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName - $restoredDatabase = "ps-test-restore-$(New-Guid)" + $restoredDatabase = "ps-test-restore-x" $db = Restore-AzSqlInstanceDatabase -FromLongTermRetentionBackup -ResourceId $backups[0].ResourceId -TargetResourceGroupName $resourceGroup -TargetInstanceName $managedInstanceName -TargetInstanceDatabaseName $restoredDatabase Assert-AreEqual $db.Name $restoredDatabase - # Test Remove + # Test Remove Backup $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -InstanceName $managedInstanceName -DatabaseName $databaseWithRemovableBackup $initialBackups = $backups.Count Remove-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -InstanceName $managedInstanceName -DatabaseName $databaseWithRemovableBackup -BackupName $backups[0].BackupName -Force @@ -279,9 +277,9 @@ function Test-ManagedInstanceLongTermRetentionResourceGroupBasedBackup # Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy -ResourceGroup $resourceGroup -ServerName $serverName -DatabaseName $databaseName -WeeklyRetention P1W # Wait about 18 hours until it gets properly copied and you see the backup when run get backups, for example: # Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -ServerName $serverName -DatabaeName $databaseName -ResourceGroupName $resourceGroup - $resourceGroup = "cl_stage_sea_cv" + $resourceGroup = "ps-test-rg" $locationName = "southeastasia" - $managedInstanceName = "seageodr-gen5-gp" + $managedInstanceName = "ps-test-mi" $databaseName = "test" # Basic Get Tests @@ -310,7 +308,7 @@ function Test-ManagedInstanceLongTermRetentionResourceGroupBasedBackup Assert-AreNotEqual $backups.Count 0 # Restore Test - $restoredDatabase = "ps-test-rest-rg-$(New-Guid)" + $restoredDatabase = "ps-test-restore-with-rg-x" $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -ResourceGroupName $resourceGroup $db = Restore-AzSqlInstanceDatabase -FromLongTermRetentionBackup -ResourceId $backups[0].ResourceId -TargetResourceGroupName $resourceGroup -TargetInstanceName $managedInstanceName -TargetInstanceDatabaseName $restoredDatabase Assert-AreEqual $db.Name $restoredDatabase diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionBackup.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionBackup.json index c7912492d7dc..421f5182c2ae 100644 --- a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionBackup.json +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionBackup.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcz9vbmx5TGF0ZXN0UGVyRGF0YWJhc2U9ZmFsc2UmYXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b2235983-6ab5-42bb-ab14-80970c497861" + "94c0808e-9f29-43b4-b8f1-9aff009ddbaa" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -27,7 +27,7 @@ "no-cache" ], "x-ms-request-id": [ - "adb9fee1-504b-44da-bdab-c9ba8f993bad" + "b6175b5a-1245-477b-92fd-2ada2e1f9bf6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -36,10 +36,10 @@ "14999" ], "x-ms-correlation-request-id": [ - "b0b394ec-e27c-4c12-a3fd-b26813ae294c" + "11a65c20-78a8-4794-b43a-8c93f049e7c3" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T204251Z:b0b394ec-e27c-4c12-a3fd-b26813ae294c" + "NORTHEUROPE:20200304T012854Z:11a65c20-78a8-4794-b43a-8c93f049e7c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,10 +48,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 20:42:50 GMT" + "Wed, 04 Mar 2020 01:28:53 GMT" ], "Content-Length": [ - "12882" + "12119" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60,17 +60,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-455\",\r\n \"backupTime\": \"2020-02-27T20:49:41Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:23:48.8462413Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-455/longTermRetentionManagedInstanceBackups/af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"name\": \"af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcz9vbmx5TGF0ZXN0UGVyRGF0YWJhc2U9ZmFsc2UmYXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b48e98a-705f-483e-848a-c83a30a61c90" + "59617ee2-2aca-44a8-9a6f-b42a89096d15" ], "Accept-Language": [ "en-US" @@ -79,7 +79,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -90,19 +90,19 @@ "no-cache" ], "x-ms-request-id": [ - "3d0fed75-2c69-4404-847c-2d0197009045" + "3787fa50-0db8-4b15-bba1-3cc945514c38" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14991" ], "x-ms-correlation-request-id": [ - "804a2e80-e42c-4d83-9472-11298b50b674" + "86bbea37-15a6-4040-939c-3bd085a4bc9e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T204255Z:804a2e80-e42c-4d83-9472-11298b50b674" + "NORTHEUROPE:20200304T012857Z:86bbea37-15a6-4040-939c-3bd085a4bc9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,10 +111,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 20:42:55 GMT" + "Wed, 04 Mar 2020 01:28:56 GMT" ], "Content-Length": [ - "12882" + "12119" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,17 +123,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-455\",\r\n \"backupTime\": \"2020-02-27T20:49:41Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:23:48.8462413Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-455/longTermRetentionManagedInstanceBackups/af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"name\": \"af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcz9vbmx5TGF0ZXN0UGVyRGF0YWJhc2U9ZmFsc2UmYXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d7b1eb6a-5413-4ec0-b2e7-0230b1228dc4" + "c07ded2c-3a0e-4090-a2f3-471516254b19" ], "Accept-Language": [ "en-US" @@ -142,7 +142,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -153,7 +153,7 @@ "no-cache" ], "x-ms-request-id": [ - "11c2ff90-c4f9-47e4-8ca3-e1273297e41f" + "452065b1-9f00-455b-ab76-77a9d2a8ee01" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -162,10 +162,10 @@ "14998" ], "x-ms-correlation-request-id": [ - "9d47890e-dc7b-4dc4-a68d-ec56ed1ad7a2" + "342d36c1-ad93-421d-a733-aa5152ee41e2" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T204251Z:9d47890e-dc7b-4dc4-a68d-ec56ed1ad7a2" + "NORTHEUROPE:20200304T012854Z:342d36c1-ad93-421d-a733-aa5152ee41e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,10 +174,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 20:42:50 GMT" + "Wed, 04 Mar 2020 01:28:54 GMT" ], "Content-Length": [ - "12882" + "12119" ], "Content-Type": [ "application/json; charset=utf-8" @@ -186,17 +186,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-455\",\r\n \"backupTime\": \"2020-02-27T20:49:41Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:23:48.8462413Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-455/longTermRetentionManagedInstanceBackups/af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"name\": \"af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uRGF0YWJhc2VzL3RhcmdldDEvbG9uZ1Rlcm1SZXRlbnRpb25NYW5hZ2VkSW5zdGFuY2VCYWNrdXBzP29ubHlMYXRlc3RQZXJEYXRhYmFzZT1mYWxzZSZhcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "24e6c08f-eedc-4bff-a1a0-819c0331ab11" + "61945ca2-d56a-4c58-825d-23af82f85b64" ], "Accept-Language": [ "en-US" @@ -205,7 +205,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -216,7 +216,7 @@ "no-cache" ], "x-ms-request-id": [ - "acf04d12-847d-4273-afdc-413ac83382a7" + "4e7c481a-bb33-4ea9-8f21-38e48067c37b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -225,10 +225,10 @@ "14997" ], "x-ms-correlation-request-id": [ - "c9b51293-64b5-4179-b5c0-de13dafa15ee" + "b173d8f3-8f8d-43c2-a6dc-cd9f13754e2e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T204252Z:c9b51293-64b5-4179-b5c0-de13dafa15ee" + "NORTHEUROPE:20200304T012854Z:b173d8f3-8f8d-43c2-a6dc-cd9f13754e2e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,7 +237,7 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 20:42:51 GMT" + "Wed, 04 Mar 2020 01:28:54 GMT" ], "Content-Length": [ "1489" @@ -249,17 +249,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff%3B132270644280000000?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff%3B132270644280000000?api-version=2018-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uRGF0YWJhc2VzL3RhcmdldDEvbG9uZ1Rlcm1SZXRlbnRpb25NYW5hZ2VkSW5zdGFuY2VCYWNrdXBzL2FlMWVhMTQ5LWQ1ZmYtNDU1NC05MzMzLTMzZGViZTBiOTJmZiUzQjEzMjI3MDY0NDI4MDAwMDAwMD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "288597fa-1f34-4286-8240-376a23a005bc" + "07bed9e3-731c-45dc-8c37-b66ecfeec103" ], "Accept-Language": [ "en-US" @@ -268,7 +268,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -279,7 +279,7 @@ "no-cache" ], "x-ms-request-id": [ - "36ec9180-542e-4f7a-8135-7a9b751cd0a4" + "128358ba-2a12-4380-8262-58809ba24c24" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -288,10 +288,10 @@ "14996" ], "x-ms-correlation-request-id": [ - "deddb630-ec88-4832-ab8d-b06435a9f9a0" + "88b61d45-3277-4aa6-9677-83ade7376e1d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T204252Z:deddb630-ec88-4832-ab8d-b06435a9f9a0" + "NORTHEUROPE:20200304T012855Z:88b61d45-3277-4aa6-9677-83ade7376e1d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -300,7 +300,7 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 20:42:51 GMT" + "Wed, 04 Mar 2020 01:28:54 GMT" ], "Content-Length": [ "738" @@ -312,17 +312,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/target1?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3RhcmdldDE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=true&api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uRGF0YWJhc2VzL3RhcmdldDEvbG9uZ1Rlcm1SZXRlbnRpb25NYW5hZ2VkSW5zdGFuY2VCYWNrdXBzP29ubHlMYXRlc3RQZXJEYXRhYmFzZT10cnVlJmFwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3007b69a-3e92-4fdb-807f-65b2ec55023b" + "4ffce0f7-43f2-4760-bdaa-6199a8222f6a" ], "Accept-Language": [ "en-US" @@ -331,7 +331,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -342,7 +342,7 @@ "no-cache" ], "x-ms-request-id": [ - "61bf5717-c0b9-4d0a-84f9-8074f1fe3d9b" + "a8fb2a3d-dc3d-4b50-b418-2a458c706b60" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -351,10 +351,10 @@ "14995" ], "x-ms-correlation-request-id": [ - "8970ac90-22f8-412c-8eee-f89aec080b86" + "5e9324c8-a65f-4bbb-9c3e-5e232bb56675" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T204252Z:8970ac90-22f8-412c-8eee-f89aec080b86" + "NORTHEUROPE:20200304T012855Z:5e9324c8-a65f-4bbb-9c3e-5e232bb56675" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -363,10 +363,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 20:42:51 GMT" + "Wed, 04 Mar 2020 01:28:55 GMT" ], "Content-Length": [ - "474" + "750" ], "Content-Type": [ "application/json; charset=utf-8" @@ -375,17 +375,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-02-25T00:29:11.687Z\",\r\n \"earliestRestorePoint\": \"2020-02-25T20:42:52.6829895Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/target1\",\r\n \"name\": \"target1\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/target1?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3RhcmdldDE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=true&databaseState=All&api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcz9vbmx5TGF0ZXN0UGVyRGF0YWJhc2U9dHJ1ZSZkYXRhYmFzZVN0YXRlPUFsbCZhcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee73a015-0fb6-4578-87b6-ebead5bbfcff" + "14963764-b4dc-4a97-8413-2d486e2bfb62" ], "Accept-Language": [ "en-US" @@ -394,7 +394,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -405,19 +405,19 @@ "no-cache" ], "x-ms-request-id": [ - "2540668a-4074-416e-a59a-179c98cd651d" + "d1e77eea-4a5b-4c20-a631-c41c55f4dd54" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14994" ], "x-ms-correlation-request-id": [ - "4c0c2476-82b9-467c-adfc-7ded246730ba" + "1430f80e-75bc-4194-8dd6-f748fc9d7768" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T204253Z:4c0c2476-82b9-467c-adfc-7ded246730ba" + "NORTHEUROPE:20200304T012856Z:1430f80e-75bc-4194-8dd6-f748fc9d7768" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -426,10 +426,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 20:42:53 GMT" + "Wed, 04 Mar 2020 01:28:55 GMT" ], "Content-Length": [ - "474" + "11380" ], "Content-Type": [ "application/json; charset=utf-8" @@ -438,17 +438,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-02-25T00:29:11.687Z\",\r\n \"earliestRestorePoint\": \"2020-02-25T20:42:53.4017421Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/target1\",\r\n \"name\": \"target1\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/target1?api-version=2019-06-01-preview", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/target1?api-version=2019-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3RhcmdldDE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c70dc602-4c6b-4310-becb-7158ba2ce578" + "819b807e-ef04-4b5d-9bed-4654c737c235" ], "Accept-Language": [ "en-US" @@ -457,7 +457,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -468,19 +468,19 @@ "no-cache" ], "x-ms-request-id": [ - "bcc7bedd-6488-4add-ad8e-3a547950df77" + "da15bf47-7513-4aa9-b415-616bd5fa5145" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14993" ], "x-ms-correlation-request-id": [ - "a97a8c3a-0168-40a5-a769-76193d1dcf7b" + "fdc42483-7dd4-417b-b96e-193f42437f9b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T204254Z:a97a8c3a-0168-40a5-a769-76193d1dcf7b" + "NORTHEUROPE:20200304T012856Z:fdc42483-7dd4-417b-b96e-193f42437f9b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -489,7 +489,7 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 20:42:54 GMT" + "Wed, 04 Mar 2020 01:28:55 GMT" ], "Content-Length": [ "474" @@ -501,17 +501,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-02-25T00:29:11.687Z\",\r\n \"earliestRestorePoint\": \"2020-02-25T20:42:54.8705141Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/target1\",\r\n \"name\": \"target1\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-02-25T00:29:11.687Z\",\r\n \"earliestRestorePoint\": \"2020-02-26T01:28:56.3729541Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/target1\",\r\n \"name\": \"target1\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy90YXJnZXQxL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcz9vbmx5TGF0ZXN0UGVyRGF0YWJhc2U9ZmFsc2UmYXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=true&api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy90YXJnZXQxL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcz9vbmx5TGF0ZXN0UGVyRGF0YWJhc2U9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27ab15f9-2338-4539-a570-e2803d3cfe20" + "4d0d8089-941c-4a5c-9747-31599b2327f1" ], "Accept-Language": [ "en-US" @@ -520,7 +520,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -531,19 +531,19 @@ "no-cache" ], "x-ms-request-id": [ - "7104a2d0-bb92-444d-8efa-babbeef3974d" + "ee9a10b7-63f1-4cbc-876a-1e0fbf5ed9a1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14992" ], "x-ms-correlation-request-id": [ - "56d87681-42fe-445c-8827-05f303f75c8c" + "e418968e-979e-4e89-b61f-c465a9479996" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T204253Z:56d87681-42fe-445c-8827-05f303f75c8c" + "NORTHEUROPE:20200304T012856Z:e418968e-979e-4e89-b61f-c465a9479996" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -552,10 +552,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 20:42:53 GMT" + "Wed, 04 Mar 2020 01:28:56 GMT" ], "Content-Length": [ - "1489" + "750" ], "Content-Type": [ "application/json; charset=utf-8" @@ -564,17 +564,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff%3B132270644280000000?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy90YXJnZXQxL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcy9hZTFlYTE0OS1kNWZmLTQ1NTQtOTMzMy0zM2RlYmUwYjkyZmYlM0IxMzIyNzA2NDQyODAwMDAwMDA/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3A/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "90290633-c7cb-403e-934c-067eb2f0f105" + "1617398f-c50d-4c06-be79-97e4e1d9f50b" ], "Accept-Language": [ "en-US" @@ -583,7 +583,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -594,19 +594,19 @@ "no-cache" ], "x-ms-request-id": [ - "1b918e54-1cd5-4a17-a9b6-8240a321e8e3" + "3bf7a51f-7242-4c1a-b754-1bc1979acdd8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14990" ], "x-ms-correlation-request-id": [ - "5e0f4780-2754-48c8-8ab8-41c9f2b967c9" + "8e0f84c8-b046-4071-b5b7-cda235e4315a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T204253Z:5e0f4780-2754-48c8-8ab8-41c9f2b967c9" + "NORTHEUROPE:20200304T012857Z:8e0f84c8-b046-4071-b5b7-cda235e4315a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -615,10 +615,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 20:42:53 GMT" + "Wed, 04 Mar 2020 01:28:56 GMT" ], "Content-Length": [ - "738" + "873" ], "Content-Type": [ "application/json; charset=utf-8" @@ -627,17 +627,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 8\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"ps-test-mi.lkgt1aeda54f909eb.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"cloudSA\",\r\n \"subnetId\": \"/subscriptions/741fd0f5-9cb8-442c-91c3-3ef4ca231c2a/resourceGroups/cloudlifter/providers/Microsoft.ClassicNetwork/virtualNetworks/cloudlifter-runners-stage-sea/subnets/Gen5GeoDR\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 8,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"lkgt1aeda54f909eb\",\r\n \"publicDataEndpointEnabled\": true,\r\n \"proxyOverride\": \"Proxy\",\r\n \"timezoneId\": \"UTC\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi\",\r\n \"name\": \"ps-test-mi\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=true&api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uRGF0YWJhc2VzL3RhcmdldDEvbG9uZ1Rlcm1SZXRlbnRpb25NYW5hZ2VkSW5zdGFuY2VCYWNrdXBzP29ubHlMYXRlc3RQZXJEYXRhYmFzZT10cnVlJmFwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-restore-x?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS14P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"createMode\": \"RestoreLongTermRetentionBackup\",\r\n \"longTermRetentionBackupResourceId\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cc93d8c2-6651-4efe-83f9-6c1fb36827ed" + "af0a3063-8e21-423a-8e73-ee1784aa3986" ], "Accept-Language": [ "en-US" @@ -646,7 +646,13 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "504" ] }, "ResponseHeaders": { @@ -656,20 +662,29 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/982658a2-8603-499e-a006-9bf9b7af3038?api-version=2019-06-01-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/982658a2-8603-499e-a006-9bf9b7af3038?api-version=2019-06-01-preview" + ], "x-ms-request-id": [ - "53e4d885-a741-4b53-8790-8d7e0a7beeba" + "982658a2-8603-499e-a006-9bf9b7af3038" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "b3a0c725-2a93-43e6-acf1-4b54d98ad90d" + "bc35fe38-e154-4224-bb93-817559faccf4" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T204254Z:b3a0c725-2a93-43e6-acf1-4b54d98ad90d" + "NORTHEUROPE:20200304T012901Z:bc35fe38-e154-4224-bb93-817559faccf4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -678,10 +693,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 20:42:54 GMT" + "Wed, 04 Mar 2020 01:29:01 GMT" ], "Content-Length": [ - "750" + "95" ], "Content-Type": [ "application/json; charset=utf-8" @@ -690,26 +705,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"operation\": \"CreateManagedRestoreFromLtrBackupRequest\",\r\n \"startTime\": \"2020-03-04T01:29:01.283Z\"\r\n}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=true&databaseState=All&api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcz9vbmx5TGF0ZXN0UGVyRGF0YWJhc2U9dHJ1ZSZkYXRhYmFzZVN0YXRlPUFsbCZhcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/982658a2-8603-499e-a006-9bf9b7af3038?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOTgyNjU4YTItODYwMy00OTllLWEwMDYtOWJmOWI3YWYzMDM4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "e4c14f61-1add-438a-ae7f-658d8972d6ae" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -719,20 +728,23 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "15" + ], "x-ms-request-id": [ - "15293b5c-714b-4660-ba29-04c6d922d1aa" + "5319ac69-6202-4be2-90b6-525fa821deba" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14989" ], "x-ms-correlation-request-id": [ - "af0111ed-90f0-4cc0-b5a9-81f1b230ddb5" + "e1a4c5c0-c30c-4cf4-8224-2306a52e9833" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T204254Z:af0111ed-90f0-4cc0-b5a9-81f1b230ddb5" + "NORTHEUROPE:20200304T012916Z:e1a4c5c0-c30c-4cf4-8224-2306a52e9833" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -741,10 +753,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 20:42:54 GMT" + "Wed, 04 Mar 2020 01:29:16 GMT" ], "Content-Length": [ - "12143" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -753,26 +765,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-455\",\r\n \"backupTime\": \"2020-02-27T20:49:41Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:23:48.8462413Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-455/longTermRetentionManagedInstanceBackups/af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"name\": \"af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"name\": \"982658a2-8603-499e-a006-9bf9b7af3038\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T01:29:01.283Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=true&api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy90YXJnZXQxL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcz9vbmx5TGF0ZXN0UGVyRGF0YWJhc2U9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/982658a2-8603-499e-a006-9bf9b7af3038?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOTgyNjU4YTItODYwMy00OTllLWEwMDYtOWJmOWI3YWYzMDM4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "5b30ee23-db0b-428e-b609-2e22d27815a6" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -782,8 +788,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "15" + ], "x-ms-request-id": [ - "92200cd5-3095-43d5-a47e-a97222341bed" + "189c6fd7-e0f9-45aa-8f29-e9af6a0d14c9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -792,10 +801,10 @@ "14988" ], "x-ms-correlation-request-id": [ - "7cd62230-243d-470a-a6d5-e45605b65310" + "ba7d3c6b-4625-4825-a00e-79320421181f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T204255Z:7cd62230-243d-470a-a6d5-e45605b65310" + "NORTHEUROPE:20200304T012932Z:ba7d3c6b-4625-4825-a00e-79320421181f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -804,10 +813,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 20:42:55 GMT" + "Wed, 04 Mar 2020 01:29:31 GMT" ], "Content-Length": [ - "750" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -816,26 +825,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"name\": \"982658a2-8603-499e-a006-9bf9b7af3038\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T01:29:01.283Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3A/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/982658a2-8603-499e-a006-9bf9b7af3038?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOTgyNjU4YTItODYwMy00OTllLWEwMDYtOWJmOWI3YWYzMDM4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "21d34565-bec7-4bc5-86ca-146a0761bc99" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -845,20 +848,23 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "15" + ], "x-ms-request-id": [ - "12faf28f-c712-4080-a25d-a257a0e85080" + "8a5023da-109b-4def-9cb1-784179bf6ab7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14987" ], "x-ms-correlation-request-id": [ - "5b4c0d5f-909b-4099-8499-c2dc96698149" + "8953aa78-975e-428a-be3a-2e25186b7733" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T204256Z:5b4c0d5f-909b-4099-8499-c2dc96698149" + "NORTHEUROPE:20200304T012947Z:8953aa78-975e-428a-be3a-2e25186b7733" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -867,10 +873,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 20:42:55 GMT" + "Wed, 04 Mar 2020 01:29:47 GMT" ], "Content-Length": [ - "873" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -879,32 +885,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 8\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"ps-test-mi.lkgt1aeda54f909eb.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"cloudSA\",\r\n \"subnetId\": \"/subscriptions/741fd0f5-9cb8-442c-91c3-3ef4ca231c2a/resourceGroups/cloudlifter/providers/Microsoft.ClassicNetwork/virtualNetworks/cloudlifter-runners-stage-sea/subnets/Gen5GeoDR\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 8,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"lkgt1aeda54f909eb\",\r\n \"publicDataEndpointEnabled\": true,\r\n \"proxyOverride\": \"Proxy\",\r\n \"timezoneId\": \"UTC\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi\",\r\n \"name\": \"ps-test-mi\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"982658a2-8603-499e-a006-9bf9b7af3038\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T01:29:01.283Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-restore-4b4c79c1-8647-40db-9c67-f2d5ccb3bb4d?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS00YjRjNzljMS04NjQ3LTQwZGItOWM2Ny1mMmQ1Y2NiM2JiNGQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"createMode\": \"RestoreLongTermRetentionBackup\",\r\n \"longTermRetentionBackupResourceId\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/982658a2-8603-499e-a006-9bf9b7af3038?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOTgyNjU4YTItODYwMy00OTllLWEwMDYtOWJmOWI3YWYzMDM4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b8863fe5-dcba-4bd7-a8c2-57f376dc9c10" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "504" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -914,29 +908,23 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/39a41ba9-6b8a-454b-a27d-234dda8b0366?api-version=2019-06-01-preview" - ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/39a41ba9-6b8a-454b-a27d-234dda8b0366?api-version=2019-06-01-preview" - ], "x-ms-request-id": [ - "39a41ba9-6b8a-454b-a27d-234dda8b0366" + "2c86fa91-70e6-433c-84eb-37047df3d347" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], "x-ms-correlation-request-id": [ - "21365cb9-841f-4307-b0bc-7782ca4d72ad" + "2ad91806-e139-40f8-b410-425b2ef6691b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T204258Z:21365cb9-841f-4307-b0bc-7782ca4d72ad" + "NORTHEUROPE:20200304T013002Z:2ad91806-e139-40f8-b410-425b2ef6691b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -945,10 +933,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 20:42:58 GMT" + "Wed, 04 Mar 2020 01:30:02 GMT" ], "Content-Length": [ - "94" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -957,12 +945,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateManagedRestoreFromLtrBackupRequest\",\r\n \"startTime\": \"2020-03-03T20:42:58.76Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"name\": \"982658a2-8603-499e-a006-9bf9b7af3038\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T01:29:01.283Z\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/39a41ba9-6b8a-454b-a27d-234dda8b0366?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMzlhNDFiYTktNmI4YS00NTRiLWEyN2QtMjM0ZGRhOGIwMzY2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/982658a2-8603-499e-a006-9bf9b7af3038?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOTgyNjU4YTItODYwMy00OTllLWEwMDYtOWJmOWI3YWYzMDM4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -970,7 +958,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -984,7 +972,7 @@ "15" ], "x-ms-request-id": [ - "8e313d52-9559-4268-a20f-412a02ee9870" + "32529d5a-937d-41f3-b13c-b5b443d9b080" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -993,10 +981,10 @@ "14985" ], "x-ms-correlation-request-id": [ - "ebbf6340-f728-4413-a738-ec6983a66b4f" + "5bb63fb9-e574-4777-be66-a5ef929ec077" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T204314Z:ebbf6340-f728-4413-a738-ec6983a66b4f" + "NORTHEUROPE:20200304T013018Z:5bb63fb9-e574-4777-be66-a5ef929ec077" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1005,10 +993,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 20:43:14 GMT" + "Wed, 04 Mar 2020 01:30:18 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1017,12 +1005,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"39a41ba9-6b8a-454b-a27d-234dda8b0366\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T20:42:58.76Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"982658a2-8603-499e-a006-9bf9b7af3038\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T01:29:01.283Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/39a41ba9-6b8a-454b-a27d-234dda8b0366?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMzlhNDFiYTktNmI4YS00NTRiLWEyN2QtMjM0ZGRhOGIwMzY2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/982658a2-8603-499e-a006-9bf9b7af3038?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOTgyNjU4YTItODYwMy00OTllLWEwMDYtOWJmOWI3YWYzMDM4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1030,7 +1018,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -1044,7 +1032,7 @@ "15" ], "x-ms-request-id": [ - "92a34e69-e60c-49a4-97cf-1667aef9499f" + "e315859f-973e-41f7-9dbc-497b217c849f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1053,10 +1041,10 @@ "14984" ], "x-ms-correlation-request-id": [ - "bc7adb10-3e6e-4d8f-8c70-8022636a2ff9" + "f0104f1e-793d-4114-b528-8316b45ed021" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T204329Z:bc7adb10-3e6e-4d8f-8c70-8022636a2ff9" + "NORTHEUROPE:20200304T013034Z:f0104f1e-793d-4114-b528-8316b45ed021" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1065,10 +1053,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 20:43:28 GMT" + "Wed, 04 Mar 2020 01:30:33 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1077,12 +1065,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"39a41ba9-6b8a-454b-a27d-234dda8b0366\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T20:42:58.76Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"982658a2-8603-499e-a006-9bf9b7af3038\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T01:29:01.283Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/39a41ba9-6b8a-454b-a27d-234dda8b0366?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMzlhNDFiYTktNmI4YS00NTRiLWEyN2QtMjM0ZGRhOGIwMzY2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/982658a2-8603-499e-a006-9bf9b7af3038?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOTgyNjU4YTItODYwMy00OTllLWEwMDYtOWJmOWI3YWYzMDM4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1090,7 +1078,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -1104,7 +1092,7 @@ "15" ], "x-ms-request-id": [ - "3d9f307d-ed1c-4142-877a-0d00337f3310" + "6fbd0f8e-3e72-4717-a86c-71cb8c25223a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1113,10 +1101,10 @@ "14983" ], "x-ms-correlation-request-id": [ - "8f429dc6-3301-42de-9ffc-5ce54ff5465e" + "01996028-a190-4a24-bda3-214162959304" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T204345Z:8f429dc6-3301-42de-9ffc-5ce54ff5465e" + "NORTHEUROPE:20200304T013049Z:01996028-a190-4a24-bda3-214162959304" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1125,10 +1113,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 20:43:44 GMT" + "Wed, 04 Mar 2020 01:30:48 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1137,12 +1125,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"39a41ba9-6b8a-454b-a27d-234dda8b0366\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T20:42:58.76Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"982658a2-8603-499e-a006-9bf9b7af3038\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T01:29:01.283Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/39a41ba9-6b8a-454b-a27d-234dda8b0366?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMzlhNDFiYTktNmI4YS00NTRiLWEyN2QtMjM0ZGRhOGIwMzY2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/982658a2-8603-499e-a006-9bf9b7af3038?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOTgyNjU4YTItODYwMy00OTllLWEwMDYtOWJmOWI3YWYzMDM4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1150,7 +1138,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -1164,7 +1152,7 @@ "15" ], "x-ms-request-id": [ - "376bae17-5101-419b-8f4c-f793e7ec0e19" + "ab7c8202-8b6b-4cbf-9ed9-a51e7009fb52" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1173,10 +1161,10 @@ "14982" ], "x-ms-correlation-request-id": [ - "468c950a-8668-4f35-8bd8-5c1511642f5a" + "49f475d9-11d3-4195-8dea-6e9a92b701f0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T204401Z:468c950a-8668-4f35-8bd8-5c1511642f5a" + "NORTHEUROPE:20200304T013104Z:49f475d9-11d3-4195-8dea-6e9a92b701f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1185,10 +1173,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 20:44:00 GMT" + "Wed, 04 Mar 2020 01:31:04 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1197,12 +1185,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"39a41ba9-6b8a-454b-a27d-234dda8b0366\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T20:42:58.76Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"982658a2-8603-499e-a006-9bf9b7af3038\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T01:29:01.283Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/39a41ba9-6b8a-454b-a27d-234dda8b0366?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMzlhNDFiYTktNmI4YS00NTRiLWEyN2QtMjM0ZGRhOGIwMzY2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/982658a2-8603-499e-a006-9bf9b7af3038?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOTgyNjU4YTItODYwMy00OTllLWEwMDYtOWJmOWI3YWYzMDM4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1210,7 +1198,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -1224,19 +1212,19 @@ "15" ], "x-ms-request-id": [ - "9226b580-2153-4fd7-8e18-edc053666ee5" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "a8595cd2-db08-4b71-9e62-3df14c9f5bdc" ], "x-ms-ratelimit-remaining-subscription-reads": [ "14981" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "15436b24-ae04-4e9c-8f6c-f8e001584df9" + "30c8a81d-1e4b-4753-a61f-e8c5c144dfb5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T204416Z:15436b24-ae04-4e9c-8f6c-f8e001584df9" + "NORTHEUROPE:20200304T013120Z:30c8a81d-1e4b-4753-a61f-e8c5c144dfb5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1245,10 +1233,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 20:44:15 GMT" + "Wed, 04 Mar 2020 01:31:19 GMT" ], "Content-Length": [ - "106" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1257,12 +1245,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"39a41ba9-6b8a-454b-a27d-234dda8b0366\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-03T20:42:58.76Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"982658a2-8603-499e-a006-9bf9b7af3038\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-04T01:29:01.283Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-restore-4b4c79c1-8647-40db-9c67-f2d5ccb3bb4d?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS00YjRjNzljMS04NjQ3LTQwZGItOWM2Ny1mMmQ1Y2NiM2JiNGQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-restore-x?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS14P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1270,7 +1258,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -1281,7 +1269,7 @@ "no-cache" ], "x-ms-request-id": [ - "dd0f2b54-66d6-4f67-818b-bf7c3aad8f1a" + "8124f604-f32c-49bd-b295-3c915286ff7c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1290,10 +1278,10 @@ "14980" ], "x-ms-correlation-request-id": [ - "43ed5e79-d1f8-43af-951f-3e3f971cb7e7" + "58a6699a-2398-414b-80bc-dcf8e92be28c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T204416Z:43ed5e79-d1f8-43af-951f-3e3f971cb7e7" + "NORTHEUROPE:20200304T013120Z:58a6699a-2398-414b-80bc-dcf8e92be28c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1302,10 +1290,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 20:44:16 GMT" + "Wed, 04 Mar 2020 01:31:20 GMT" ], "Content-Length": [ - "559" + "490" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1314,17 +1302,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-03T20:42:59.09Z\",\r\n \"earliestRestorePoint\": \"2020-03-03T20:44:09.143Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-restore-4b4c79c1-8647-40db-9c67-f2d5ccb3bb4d\",\r\n \"name\": \"ps-test-restore-4b4c79c1-8647-40db-9c67-f2d5ccb3bb4d\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-04T01:29:01.673Z\",\r\n \"earliestRestorePoint\": \"2020-03-04T01:30:50.453Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-restore-x\",\r\n \"name\": \"ps-test-restore-x\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-restore-4b4c79c1-8647-40db-9c67-f2d5ccb3bb4d?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS00YjRjNzljMS04NjQ3LTQwZGItOWM2Ny1mMmQ1Y2NiM2JiNGQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-restore-x?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS14P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "75e29fa8-2f5c-4cab-b93e-5b94aa510abd" + "96bf2fbf-8b78-437d-977b-85f4a5f37c83" ], "Accept-Language": [ "en-US" @@ -1333,7 +1321,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -1344,7 +1332,7 @@ "no-cache" ], "x-ms-request-id": [ - "98f3ed46-9b15-40e3-a6ed-0ce3686a853c" + "5b9e6c3b-884d-4912-a1ea-cf90d3a043c1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1353,10 +1341,10 @@ "14973" ], "x-ms-correlation-request-id": [ - "130936bf-ce7e-4716-afe1-6afedac02661" + "e8697836-3390-4545-adf3-dbc3fbe25bda" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T204434Z:130936bf-ce7e-4716-afe1-6afedac02661" + "NORTHEUROPE:20200304T013139Z:e8697836-3390-4545-adf3-dbc3fbe25bda" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1365,10 +1353,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 20:44:33 GMT" + "Wed, 04 Mar 2020 01:31:38 GMT" ], "Content-Length": [ - "559" + "490" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1377,17 +1365,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-03T20:42:59.09Z\",\r\n \"earliestRestorePoint\": \"2020-03-03T20:44:09.143Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-restore-4b4c79c1-8647-40db-9c67-f2d5ccb3bb4d\",\r\n \"name\": \"ps-test-restore-4b4c79c1-8647-40db-9c67-f2d5ccb3bb4d\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-04T01:29:01.673Z\",\r\n \"earliestRestorePoint\": \"2020-03-04T01:30:50.453Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-restore-x\",\r\n \"name\": \"ps-test-restore-x\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uRGF0YWJhc2VzL3NxbGNydWR0ZXN0LTgzMDUvbG9uZ1Rlcm1SZXRlbnRpb25NYW5hZ2VkSW5zdGFuY2VCYWNrdXBzP29ubHlMYXRlc3RQZXJEYXRhYmFzZT1mYWxzZSZhcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uRGF0YWJhc2VzL3Rlc3QvbG9uZ1Rlcm1SZXRlbnRpb25NYW5hZ2VkSW5zdGFuY2VCYWNrdXBzP29ubHlMYXRlc3RQZXJEYXRhYmFzZT1mYWxzZSZhcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dbf31d9d-8de3-456b-9c96-9263ce435843" + "393e338b-efa5-406d-a48a-99f90b3f408d" ], "Accept-Language": [ "en-US" @@ -1396,7 +1384,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -1407,7 +1395,7 @@ "no-cache" ], "x-ms-request-id": [ - "133c27fc-40ad-4933-a99a-8548d536ab32" + "6d5e1aba-13e6-44be-aeac-ae0fc1fb0ad9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1416,10 +1404,10 @@ "14979" ], "x-ms-correlation-request-id": [ - "72d158e7-a925-4cb6-9663-8b7fde99ff03" + "20ecd42c-2210-4400-b882-f4762a9050cc" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T204417Z:72d158e7-a925-4cb6-9663-8b7fde99ff03" + "NORTHEUROPE:20200304T013121Z:20ecd42c-2210-4400-b882-f4762a9050cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1428,10 +1416,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 20:44:16 GMT" + "Wed, 04 Mar 2020 01:31:20 GMT" ], "Content-Length": [ - "776" + "1543" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1440,17 +1428,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae%3B132273185790000000?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uRGF0YWJhc2VzL3NxbGNydWR0ZXN0LTgzMDUvbG9uZ1Rlcm1SZXRlbnRpb25NYW5hZ2VkSW5zdGFuY2VCYWNrdXBzLzUwODNkNjczLTIzOWQtNDMzYi1hYjMyLThkNTZiZDY5ZTlhZSUzQjEzMjI3MzE4NTc5MDAwMDAwMD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94%3B132271661370000000?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uRGF0YWJhc2VzL3Rlc3QvbG9uZ1Rlcm1SZXRlbnRpb25NYW5hZ2VkSW5zdGFuY2VCYWNrdXBzLzQ5MjNhMGMxLWJmYzQtNDRlMy1iZjgzLTNlYTNmYzc0MWQ5NCUzQjEzMjI3MTY2MTM3MDAwMDAwMD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1f8c4bbd-fd21-4517-8304-11673f10a551" + "d9252af4-0d66-45b0-81f0-2bf1e1c152c2" ], "Accept-Language": [ "en-US" @@ -1459,7 +1447,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -1470,7 +1458,7 @@ "no-cache" ], "x-ms-request-id": [ - "152aebc7-35e2-486c-ae02-ed8ee0addda2" + "9880bf6c-4417-42f5-bb94-b121619e4054" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1479,10 +1467,10 @@ "14978" ], "x-ms-correlation-request-id": [ - "688ecd18-fa85-415c-b685-1ffd76ed17e9" + "bdf9d8f3-751e-4990-a377-21fa1f5a7f74" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T204417Z:688ecd18-fa85-415c-b685-1ffd76ed17e9" + "NORTHEUROPE:20200304T013121Z:bdf9d8f3-751e-4990-a377-21fa1f5a7f74" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1491,10 +1479,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 20:44:16 GMT" + "Wed, 04 Mar 2020 01:31:20 GMT" ], "Content-Length": [ - "764" + "740" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1503,17 +1491,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae%3B132273185790000000?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uRGF0YWJhc2VzL3NxbGNydWR0ZXN0LTgzMDUvbG9uZ1Rlcm1SZXRlbnRpb25NYW5hZ2VkSW5zdGFuY2VCYWNrdXBzLzUwODNkNjczLTIzOWQtNDMzYi1hYjMyLThkNTZiZDY5ZTlhZSUzQjEzMjI3MzE4NTc5MDAwMDAwMD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94%3B132271661370000000?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uRGF0YWJhc2VzL3Rlc3QvbG9uZ1Rlcm1SZXRlbnRpb25NYW5hZ2VkSW5zdGFuY2VCYWNrdXBzLzQ5MjNhMGMxLWJmYzQtNDRlMy1iZjgzLTNlYTNmYzc0MWQ5NCUzQjEzMjI3MTY2MTM3MDAwMDAwMD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "79517c13-d548-41f5-bd10-c62c60c8275d" + "bd4a4cf2-b8fe-423b-b7c3-968bd26db847" ], "Accept-Language": [ "en-US" @@ -1522,7 +1510,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -1533,16 +1521,16 @@ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackupOperationResults/f7c239ae-523d-43d5-926b-d20cb748848f?api-version=2018-06-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackupOperationResults/792c539b-fcbf-4f56-80d6-bfe1fb487098?api-version=2018-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackupAzureAsyncOperation/f7c239ae-523d-43d5-926b-d20cb748848f?api-version=2018-06-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackupAzureAsyncOperation/792c539b-fcbf-4f56-80d6-bfe1fb487098?api-version=2018-06-01-preview" ], "x-ms-request-id": [ - "f7c239ae-523d-43d5-926b-d20cb748848f" + "792c539b-fcbf-4f56-80d6-bfe1fb487098" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1551,10 +1539,10 @@ "14999" ], "x-ms-correlation-request-id": [ - "633775e6-7c0a-4b25-b697-efb3e2e93a54" + "2fb15d04-293a-4d88-8154-6f2ecb2d2d10" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T204417Z:633775e6-7c0a-4b25-b697-efb3e2e93a54" + "NORTHEUROPE:20200304T013122Z:2fb15d04-293a-4d88-8154-6f2ecb2d2d10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1563,10 +1551,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 20:44:17 GMT" + "Wed, 04 Mar 2020 01:31:22 GMT" ], "Content-Length": [ - "70" + "69" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1575,12 +1563,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"DeleteLTRBackup\",\r\n \"startTime\": \"2020-03-03T20:44:17.723Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"DeleteLTRBackup\",\r\n \"startTime\": \"2020-03-04T01:31:22.18Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackupAzureAsyncOperation/f7c239ae-523d-43d5-926b-d20cb748848f?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3VwQXp1cmVBc3luY09wZXJhdGlvbi9mN2MyMzlhZS01MjNkLTQzZDUtOTI2Yi1kMjBjYjc0ODg0OGY/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackupAzureAsyncOperation/792c539b-fcbf-4f56-80d6-bfe1fb487098?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3VwQXp1cmVBc3luY09wZXJhdGlvbi83OTJjNTM5Yi1mY2JmLTRmNTYtODBkNi1iZmUxZmI0ODcwOTg/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1588,7 +1576,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -1602,7 +1590,7 @@ "15" ], "x-ms-request-id": [ - "d2cf383a-dc72-4da4-af91-ac288ef82a5c" + "83370f78-5095-4170-836c-93c4056b3802" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1611,10 +1599,10 @@ "14977" ], "x-ms-correlation-request-id": [ - "f04584a1-9eb8-4c98-9ccb-b45d724fd128" + "eb70887a-256a-40e4-a23e-d3b2b0519958" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T204433Z:f04584a1-9eb8-4c98-9ccb-b45d724fd128" + "NORTHEUROPE:20200304T013137Z:eb70887a-256a-40e4-a23e-d3b2b0519958" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1623,10 +1611,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 20:44:32 GMT" + "Wed, 04 Mar 2020 01:31:37 GMT" ], "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1635,12 +1623,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"f7c239ae-523d-43d5-926b-d20cb748848f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-03T20:44:17.723Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"792c539b-fcbf-4f56-80d6-bfe1fb487098\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-04T01:31:22.18Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackupOperationResults/f7c239ae-523d-43d5-926b-d20cb748848f?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3VwT3BlcmF0aW9uUmVzdWx0cy9mN2MyMzlhZS01MjNkLTQzZDUtOTI2Yi1kMjBjYjc0ODg0OGY/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackupOperationResults/792c539b-fcbf-4f56-80d6-bfe1fb487098?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3VwT3BlcmF0aW9uUmVzdWx0cy83OTJjNTM5Yi1mY2JmLTRmNTYtODBkNi1iZmUxZmI0ODcwOTg/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1648,7 +1636,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -1659,7 +1647,7 @@ "no-cache" ], "x-ms-request-id": [ - "d7f778c7-4ca0-4b2f-a53f-fe478bab6945" + "554ef697-7965-4c66-98dd-64e41fa46870" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1668,10 +1656,10 @@ "14976" ], "x-ms-correlation-request-id": [ - "4fb45c83-5790-4f1e-a716-b73e6391811e" + "02521372-88e8-4973-8831-bf5bfa010dbb" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T204433Z:4fb45c83-5790-4f1e-a716-b73e6391811e" + "NORTHEUROPE:20200304T013138Z:02521372-88e8-4973-8831-bf5bfa010dbb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1680,7 +1668,7 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 20:44:33 GMT" + "Wed, 04 Mar 2020 01:31:37 GMT" ], "Expires": [ "-1" @@ -1693,13 +1681,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/sqlcrudtest-8305?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTgzMDU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3Rlc3Q/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f2567beb-0f46-457c-9c91-8dd9a6e2b564" + "96a58421-0e07-45f4-b1a2-79c79043c28d" ], "Accept-Language": [ "en-US" @@ -1708,7 +1696,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -1719,7 +1707,7 @@ "no-cache" ], "x-ms-request-id": [ - "b426882c-580a-4153-b99b-cf2f15d98579" + "787717f6-2cfc-4969-b95e-e85ca22aed2a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1728,10 +1716,10 @@ "14975" ], "x-ms-correlation-request-id": [ - "c6473734-e18a-4a21-9264-587b20d9e377" + "3b346bc8-3ac1-42d2-bbc3-d3b3ead8c0cc" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T204434Z:c6473734-e18a-4a21-9264-587b20d9e377" + "NORTHEUROPE:20200304T013138Z:3b346bc8-3ac1-42d2-bbc3-d3b3ead8c0cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1740,10 +1728,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 20:44:33 GMT" + "Wed, 04 Mar 2020 01:31:37 GMT" ], "Content-Length": [ - "487" + "463" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1752,17 +1740,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-02-27T23:05:57.763Z\",\r\n \"earliestRestorePoint\": \"2020-02-27T23:09:41.63Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/sqlcrudtest-8305\",\r\n \"name\": \"sqlcrudtest-8305\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-02-26T04:46:02.857Z\",\r\n \"earliestRestorePoint\": \"2020-02-26T04:49:01.92Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test\",\r\n \"name\": \"test\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy9zcWxjcnVkdGVzdC04MzA1L2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcz9vbmx5TGF0ZXN0UGVyRGF0YWJhc2U9ZmFsc2UmYXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy90ZXN0L2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcz9vbmx5TGF0ZXN0UGVyRGF0YWJhc2U9ZmFsc2UmYXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f682396b-75ca-42c0-89ba-41f2278adc1c" + "2ee08848-54d5-4c9a-9140-5f772a54946c" ], "Accept-Language": [ "en-US" @@ -1771,7 +1759,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -1782,7 +1770,7 @@ "no-cache" ], "x-ms-request-id": [ - "766ce721-7459-4552-8ae2-f35df7cd4ecd" + "1314e145-8843-4bbf-809e-d2c7d9cc9b61" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1791,10 +1779,10 @@ "14974" ], "x-ms-correlation-request-id": [ - "d521bec4-688c-4b04-a272-35b92374ebc6" + "9da46494-50d2-43ce-86c7-e4fbac437c6b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T204434Z:d521bec4-688c-4b04-a272-35b92374ebc6" + "NORTHEUROPE:20200304T013138Z:9da46494-50d2-43ce-86c7-e4fbac437c6b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1803,10 +1791,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 20:44:33 GMT" + "Wed, 04 Mar 2020 01:31:38 GMT" ], "Content-Length": [ - "12" + "802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1815,17 +1803,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-restore-4b4c79c1-8647-40db-9c67-f2d5ccb3bb4d?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS00YjRjNzljMS04NjQ3LTQwZGItOWM2Ny1mMmQ1Y2NiM2JiNGQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-restore-x?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS14P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed8c0f80-33f6-4738-80d7-63cf451f7878" + "267c3fdc-4fe2-4621-afb1-1113153d84a1" ], "Accept-Language": [ "en-US" @@ -1834,7 +1822,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -1845,16 +1833,16 @@ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/c578c703-d04c-47a4-a8cf-7bc6dce8cfca?api-version=2019-06-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/b6702ba1-5d4e-4664-b163-cce3129ce5a8?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/c578c703-d04c-47a4-a8cf-7bc6dce8cfca?api-version=2019-06-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/b6702ba1-5d4e-4664-b163-cce3129ce5a8?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "c578c703-d04c-47a4-a8cf-7bc6dce8cfca" + "b6702ba1-5d4e-4664-b163-cce3129ce5a8" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1863,10 +1851,10 @@ "14998" ], "x-ms-correlation-request-id": [ - "37e6c203-71bf-4ede-ab9c-fae8c84c92b4" + "fb7a6643-c3c0-4629-8a75-127fbaf13334" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T204436Z:37e6c203-71bf-4ede-ab9c-fae8c84c92b4" + "NORTHEUROPE:20200304T013139Z:fb7a6643-c3c0-4629-8a75-127fbaf13334" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1875,7 +1863,7 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 20:44:36 GMT" + "Wed, 04 Mar 2020 01:31:39 GMT" ], "Content-Length": [ "74" @@ -1887,12 +1875,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"DropManagedDatabase\",\r\n \"startTime\": \"2020-03-03T20:44:36.417Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"DropManagedDatabase\",\r\n \"startTime\": \"2020-03-04T01:31:39.377Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/c578c703-d04c-47a4-a8cf-7bc6dce8cfca?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYzU3OGM3MDMtZDA0Yy00N2E0LWE4Y2YtN2JjNmRjZThjZmNhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/b6702ba1-5d4e-4664-b163-cce3129ce5a8?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYjY3MDJiYTEtNWQ0ZS00NjY0LWIxNjMtY2NlMzEyOWNlNWE4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1900,7 +1888,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -1914,7 +1902,7 @@ "15" ], "x-ms-request-id": [ - "67aae556-c7ce-461e-a4a2-d215579577d2" + "349b9a29-c7bb-43e2-9f19-3b9702512ae4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1923,10 +1911,10 @@ "14972" ], "x-ms-correlation-request-id": [ - "36aec274-5e9b-44ab-8790-efa2213fdb87" + "6759895d-6272-4ef6-8477-f77cb0460b3d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T204452Z:36aec274-5e9b-44ab-8790-efa2213fdb87" + "NORTHEUROPE:20200304T013154Z:6759895d-6272-4ef6-8477-f77cb0460b3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1935,7 +1923,7 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 20:44:52 GMT" + "Wed, 04 Mar 2020 01:31:54 GMT" ], "Content-Length": [ "107" @@ -1947,12 +1935,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"c578c703-d04c-47a4-a8cf-7bc6dce8cfca\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-03T20:44:36.417Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"b6702ba1-5d4e-4664-b163-cce3129ce5a8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-04T01:31:39.377Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/c578c703-d04c-47a4-a8cf-7bc6dce8cfca?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZU9wZXJhdGlvblJlc3VsdHMvYzU3OGM3MDMtZDA0Yy00N2E0LWE4Y2YtN2JjNmRjZThjZmNhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/b6702ba1-5d4e-4664-b163-cce3129ce5a8?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZU9wZXJhdGlvblJlc3VsdHMvYjY3MDJiYTEtNWQ0ZS00NjY0LWIxNjMtY2NlMzEyOWNlNWE4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1960,7 +1948,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -1971,7 +1959,7 @@ "no-cache" ], "x-ms-request-id": [ - "b0e548a4-8850-4777-9c50-d6e384584d42" + "8493c427-4efd-4a68-9e0d-f16b7300b94d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1980,10 +1968,10 @@ "14971" ], "x-ms-correlation-request-id": [ - "594eb901-7f9d-4758-bd10-61db4eb85230" + "80d34c98-e8f6-4f1f-b4cc-40bf0bcc2090" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T204452Z:594eb901-7f9d-4758-bd10-61db4eb85230" + "NORTHEUROPE:20200304T013155Z:80d34c98-e8f6-4f1f-b4cc-40bf0bcc2090" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1992,7 +1980,7 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 20:44:52 GMT" + "Wed, 04 Mar 2020 01:31:54 GMT" ], "Expires": [ "-1" @@ -2004,6 +1992,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "8cfb8b62-bcd6-4713-89ad-18097f75cc5b" + "SubscriptionId": "709b4d09-b251-4ae8-8998-e1954ee45cf9" } } \ No newline at end of file diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionPolicy.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionPolicy.json index 997d2013ae33..cc78fcc4bf9d 100644 --- a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionPolicy.json +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionPolicy.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3Rlc3QtZTE4NjUyZDAtOTlhNy00YmM3LTllYjMtNzMzYWUzZGFlMzM3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-ltr-policy-test?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLWx0ci1wb2xpY3ktdGVzdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99ac52e2-44eb-4dd3-b44b-7d4008da73af" + "bfdf79e7-9a2a-4445-936a-8eeae64e9b57" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -30,13 +30,13 @@ "gateway" ], "x-ms-request-id": [ - "2b51339c-73a5-4279-8494-9e7fe1479b3d" + "bc9ee591-ed5f-412c-b1d1-036e98d5e1ec" ], "x-ms-correlation-request-id": [ - "2b51339c-73a5-4279-8494-9e7fe1479b3d" + "bc9ee591-ed5f-412c-b1d1-036e98d5e1ec" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T065749Z:2b51339c-73a5-4279-8494-9e7fe1479b3d" + "NORTHEUROPE:20200304T012104Z:bc9ee591-ed5f-412c-b1d1-036e98d5e1ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 06:57:48 GMT" + "Wed, 04 Mar 2020 01:21:04 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,15 +54,15 @@ "-1" ], "Content-Length": [ - "218" + "195" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/managedInstances/ps-test-mi/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337' under resource group 'ps-test-rg' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-ltr-policy-test' under resource group 'ps-test-rg' was not found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3Rlc3QtZTE4NjUyZDAtOTlhNy00YmM3LTllYjMtNzMzYWUzZGFlMzM3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-ltr-policy-test?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLWx0ci1wb2xpY3ktdGVzdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -70,7 +70,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -81,19 +81,19 @@ "no-cache" ], "x-ms-request-id": [ - "e45c30d6-efd0-4bab-a595-eb0c12b6262c" + "f3030d40-9dba-4f2e-9e42-b6a3eccddb45" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14986" ], "x-ms-correlation-request-id": [ - "7ee8552f-80b3-4de6-a298-eb6fb4f989b9" + "494e5126-a58d-40ac-bc2d-be950ab9a2ae" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T065827Z:7ee8552f-80b3-4de6-a298-eb6fb4f989b9" + "NORTHEUROPE:20200304T012209Z:494e5126-a58d-40ac-bc2d-be950ab9a2ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -102,10 +102,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 06:58:26 GMT" + "Wed, 04 Mar 2020 01:22:09 GMT" ], "Content-Length": [ - "487" + "441" ], "Content-Type": [ "application/json; charset=utf-8" @@ -114,17 +114,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-03T06:57:55.49Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"name\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-04T01:21:07.76Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-ltr-policy-test\",\r\n \"name\": \"ps-ltr-policy-test\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi?api-version=2018-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3A/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4be20c2a-347e-41b9-af58-afc53c62827e" + "8b0b3998-9ea4-46db-998c-7b7175c830fb" ], "Accept-Language": [ "en-US" @@ -133,7 +133,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -144,19 +144,19 @@ "no-cache" ], "x-ms-request-id": [ - "c42a3e62-a10f-42ba-940e-71b34cb4bed0" + "8086055a-969f-4e9c-9c17-c75410ac7f7a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14991" ], "x-ms-correlation-request-id": [ - "a7cd7e50-4be9-4dc6-8f95-006c18a95ee4" + "901a8542-b7d0-4599-9134-d304f255cd92" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T065752Z:a7cd7e50-4be9-4dc6-8f95-006c18a95ee4" + "NORTHEUROPE:20200304T012104Z:901a8542-b7d0-4599-9134-d304f255cd92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -165,7 +165,7 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 06:57:51 GMT" + "Wed, 04 Mar 2020 01:21:04 GMT" ], "Content-Length": [ "873" @@ -177,17 +177,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 8\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"ps-test-mi.lkgt1aeda54f909eb.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"cloudSA\",\r\n \"subnetId\": \"/subscriptions/741fd0f5-9cb8-442c-91c3-3ef4ca231c2a/resourceGroups/cloudlifter/providers/Microsoft.ClassicNetwork/virtualNetworks/cloudlifter-runners-stage-sea/subnets/Gen5GeoDR\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 8,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"lkgt1aeda54f909eb\",\r\n \"publicDataEndpointEnabled\": true,\r\n \"proxyOverride\": \"Proxy\",\r\n \"timezoneId\": \"UTC\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi\",\r\n \"name\": \"ps-test-mi\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 8\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"ps-test-mi.lkgt1aeda54f909eb.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"cloudSA\",\r\n \"subnetId\": \"/subscriptions/741fd0f5-9cb8-442c-91c3-3ef4ca231c2a/resourceGroups/cloudlifter/providers/Microsoft.ClassicNetwork/virtualNetworks/cloudlifter-runners-stage-sea/subnets/Gen5GeoDR\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 8,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"lkgt1aeda54f909eb\",\r\n \"publicDataEndpointEnabled\": true,\r\n \"proxyOverride\": \"Proxy\",\r\n \"timezoneId\": \"UTC\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi\",\r\n \"name\": \"ps-test-mi\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3Rlc3QtZTE4NjUyZDAtOTlhNy00YmM3LTllYjMtNzMzYWUzZGFlMzM3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-ltr-policy-test?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLWx0ci1wb2xpY3ktdGVzdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cc25406c-0134-439d-9feb-36679bb3da22" + "9e4abdb8-bb90-45bb-b6ea-f4cf1e053e79" ], "Accept-Language": [ "en-US" @@ -196,7 +196,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -213,16 +213,16 @@ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/59f6633f-b545-4f9f-a816-fa03ae4e786a?api-version=2019-06-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/46dc2f72-75f8-4df9-8a2f-1a90c053504c?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/59f6633f-b545-4f9f-a816-fa03ae4e786a?api-version=2019-06-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/46dc2f72-75f8-4df9-8a2f-1a90c053504c?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "59f6633f-b545-4f9f-a816-fa03ae4e786a" + "46dc2f72-75f8-4df9-8a2f-1a90c053504c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -231,10 +231,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "7e1f27c4-c473-4c2b-8a32-abf816a531d8" + "298bf34e-82eb-4680-9fa0-41d41928dd95" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T065755Z:7e1f27c4-c473-4c2b-8a32-abf816a531d8" + "NORTHEUROPE:20200304T012107Z:298bf34e-82eb-4680-9fa0-41d41928dd95" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -243,10 +243,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 06:57:55 GMT" + "Wed, 04 Mar 2020 01:21:07 GMT" ], "Content-Length": [ - "75" + "76" ], "Content-Type": [ "application/json; charset=utf-8" @@ -255,12 +255,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateManagedDatabase\",\r\n \"startTime\": \"2020-03-03T06:57:55.04Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateManagedDatabase\",\r\n \"startTime\": \"2020-03-04T01:21:07.337Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/59f6633f-b545-4f9f-a816-fa03ae4e786a?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNTlmNjYzM2YtYjU0NS00ZjlmLWE4MTYtZmEwM2FlNGU3ODZhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/46dc2f72-75f8-4df9-8a2f-1a90c053504c?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNDZkYzJmNzItNzVmOC00ZGY5LThhMmYtMWE5MGMwNTM1MDRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -268,7 +268,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -282,19 +282,19 @@ "15" ], "x-ms-request-id": [ - "3379e0ff-a30e-4d83-b21e-8daf691d8a1a" + "2007456c-d023-4610-8810-046adc114fb9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14990" ], "x-ms-correlation-request-id": [ - "8e4681cf-73a8-4c80-bb0a-d76fb704012d" + "8fcd728e-1ad9-488d-a4d9-2d5f94981f47" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T065811Z:8e4681cf-73a8-4c80-bb0a-d76fb704012d" + "NORTHEUROPE:20200304T012122Z:8fcd728e-1ad9-488d-a4d9-2d5f94981f47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,10 +303,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 06:58:11 GMT" + "Wed, 04 Mar 2020 01:21:22 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -315,12 +315,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"59f6633f-b545-4f9f-a816-fa03ae4e786a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T06:57:55.04Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"46dc2f72-75f8-4df9-8a2f-1a90c053504c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T01:21:07.337Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/59f6633f-b545-4f9f-a816-fa03ae4e786a?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNTlmNjYzM2YtYjU0NS00ZjlmLWE4MTYtZmEwM2FlNGU3ODZhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/46dc2f72-75f8-4df9-8a2f-1a90c053504c?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNDZkYzJmNzItNzVmOC00ZGY5LThhMmYtMWE5MGMwNTM1MDRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -328,7 +328,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -342,19 +342,19 @@ "15" ], "x-ms-request-id": [ - "d71528dc-9055-402f-a568-2873540eb663" + "4653a057-ec7c-442a-bcb3-1cf7549a225e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14989" ], "x-ms-correlation-request-id": [ - "cd6d87c8-73c9-4f86-b8f6-73dd02e08ca7" + "1ae65697-a69b-40b2-b1ec-47f144183080" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T065827Z:cd6d87c8-73c9-4f86-b8f6-73dd02e08ca7" + "NORTHEUROPE:20200304T012138Z:1ae65697-a69b-40b2-b1ec-47f144183080" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -363,10 +363,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 06:58:26 GMT" + "Wed, 04 Mar 2020 01:21:37 GMT" ], "Content-Length": [ - "106" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -375,26 +375,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"59f6633f-b545-4f9f-a816-fa03ae4e786a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-03T06:57:55.04Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"46dc2f72-75f8-4df9-8a2f-1a90c053504c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T01:21:07.337Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/backupLongTermRetentionPolicies/default?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3Rlc3QtZTE4NjUyZDAtOTlhNy00YmM3LTllYjMtNzMzYWUzZGFlMzM3L2JhY2t1cExvbmdUZXJtUmV0ZW50aW9uUG9saWNpZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/46dc2f72-75f8-4df9-8a2f-1a90c053504c?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNDZkYzJmNzItNzVmOC00ZGY5LThhMmYtMWE5MGMwNTM1MDRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "4e20def4-a74b-4cd6-85b9-f1969bb656f0" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -404,20 +398,23 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "15" + ], "x-ms-request-id": [ - "1f8c4606-cddc-4900-a419-d48b1c236ae6" + "f7c77d51-6f26-4c7d-b7e4-bd04ffd19cc2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" - ], "x-ms-correlation-request-id": [ - "37ef1c15-5698-462e-a42e-5d1965fc5d26" + "23458850-3319-40dc-ab4a-8b8a04134b84" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T065827Z:37ef1c15-5698-462e-a42e-5d1965fc5d26" + "NORTHEUROPE:20200304T012153Z:23458850-3319-40dc-ab4a-8b8a04134b84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -426,10 +423,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 06:58:27 GMT" + "Wed, 04 Mar 2020 01:21:53 GMT" ], "Content-Length": [ - "444" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -438,12 +435,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"weeklyRetention\": \"PT0S\",\r\n \"monthlyRetention\": \"PT0S\",\r\n \"yearlyRetention\": \"PT0S\",\r\n \"weekOfYear\": 0\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/backupLongTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicy\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"46dc2f72-75f8-4df9-8a2f-1a90c053504c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T01:21:07.337Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/backupLongTermRetentionPolicies/default?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3Rlc3QtZTE4NjUyZDAtOTlhNy00YmM3LTllYjMtNzMzYWUzZGFlMzM3L2JhY2t1cExvbmdUZXJtUmV0ZW50aW9uUG9saWNpZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/46dc2f72-75f8-4df9-8a2f-1a90c053504c?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNDZkYzJmNzItNzVmOC00ZGY5LThhMmYtMWE5MGMwNTM1MDRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -451,7 +448,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -461,20 +458,23 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "15" + ], "x-ms-request-id": [ - "346a3574-9927-4ee2-9fd6-20a57fcfa9f0" + "0c17e6a7-bc34-424d-8434-cda2c09bf42e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14987" ], "x-ms-correlation-request-id": [ - "4e3b8ef5-1586-41a9-a36f-76bde9b81b99" + "3e22b21f-ae4e-4039-9d8a-4b9528cd890a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T065917Z:4e3b8ef5-1586-41a9-a36f-76bde9b81b99" + "NORTHEUROPE:20200304T012209Z:3e22b21f-ae4e-4039-9d8a-4b9528cd890a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -483,10 +483,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 06:59:16 GMT" + "Wed, 04 Mar 2020 01:22:09 GMT" ], "Content-Length": [ - "443" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -495,17 +495,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"weeklyRetention\": \"P1W\",\r\n \"monthlyRetention\": \"PT0S\",\r\n \"yearlyRetention\": \"PT0S\",\r\n \"weekOfYear\": 0\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/backupLongTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicy\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"46dc2f72-75f8-4df9-8a2f-1a90c053504c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-04T01:21:07.337Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/backupLongTermRetentionPolicies/default?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3Rlc3QtZTE4NjUyZDAtOTlhNy00YmM3LTllYjMtNzMzYWUzZGFlMzM3L2JhY2t1cExvbmdUZXJtUmV0ZW50aW9uUG9saWNpZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-ltr-policy-test/backupLongTermRetentionPolicies/default?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLWx0ci1wb2xpY3ktdGVzdC9iYWNrdXBMb25nVGVybVJldGVudGlvblBvbGljaWVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a2aa9ab-52ce-404a-b2d6-1c96a6dc3afd" + "bb97bd5e-97ef-4e7e-b0b9-47f45c0c2b82" ], "Accept-Language": [ "en-US" @@ -514,7 +514,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -525,7 +525,7 @@ "no-cache" ], "x-ms-request-id": [ - "478c7a89-7390-4681-9e12-5d92b1e6933f" + "53bc176d-497f-4fd6-a210-02d73c244453" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -534,10 +534,10 @@ "14985" ], "x-ms-correlation-request-id": [ - "9e9d3331-15b1-4dd9-ade4-bc665170f562" + "575294cc-5763-4447-9089-4c01e28075cb" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T065917Z:9e9d3331-15b1-4dd9-ade4-bc665170f562" + "NORTHEUROPE:20200304T012210Z:575294cc-5763-4447-9089-4c01e28075cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -546,10 +546,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 06:59:16 GMT" + "Wed, 04 Mar 2020 01:22:10 GMT" ], "Content-Length": [ - "443" + "421" ], "Content-Type": [ "application/json; charset=utf-8" @@ -558,32 +558,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"weeklyRetention\": \"P1W\",\r\n \"monthlyRetention\": \"PT0S\",\r\n \"yearlyRetention\": \"PT0S\",\r\n \"weekOfYear\": 0\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/backupLongTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicy\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"weeklyRetention\": \"PT0S\",\r\n \"monthlyRetention\": \"PT0S\",\r\n \"yearlyRetention\": \"PT0S\",\r\n \"weekOfYear\": 0\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-ltr-policy-test/backupLongTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicy\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/backupLongTermRetentionPolicies/default?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3Rlc3QtZTE4NjUyZDAtOTlhNy00YmM3LTllYjMtNzMzYWUzZGFlMzM3L2JhY2t1cExvbmdUZXJtUmV0ZW50aW9uUG9saWNpZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"weeklyRetention\": \"P1W\",\r\n \"weekOfYear\": 0\r\n }\r\n}", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-ltr-policy-test/backupLongTermRetentionPolicies/default?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLWx0ci1wb2xpY3ktdGVzdC9iYWNrdXBMb25nVGVybVJldGVudGlvblBvbGljaWVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "cb55c5ee-878c-4fe8-8a4d-df47c0adaa78" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "80" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -593,29 +581,20 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyOperationResults/a0624928-18b3-4696-a23f-19856493b7f5?api-version=2018-06-01-preview" - ], - "Retry-After": [ - "15" - ], - "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyAzureAsyncOperation/a0624928-18b3-4696-a23f-19856493b7f5?api-version=2018-06-01-preview" - ], "x-ms-request-id": [ - "a0624928-18b3-4696-a23f-19856493b7f5" + "ba58c1c6-b66e-4f81-b0d7-2aea7da93532" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" ], "x-ms-correlation-request-id": [ - "9059cedc-f0a0-443b-8359-f536c1243585" + "65c3dc21-0080-4a9a-9d02-f9a4188965c3" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T065830Z:9059cedc-f0a0-443b-8359-f536c1243585" + "NORTHEUROPE:20200304T012226Z:65c3dc21-0080-4a9a-9d02-f9a4188965c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -624,10 +603,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 06:58:30 GMT" + "Wed, 04 Mar 2020 01:22:26 GMT" ], "Content-Length": [ - "91" + "420" ], "Content-Type": [ "application/json; charset=utf-8" @@ -636,20 +615,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpsertDatabaseBackupArchivalPolicyV2\",\r\n \"startTime\": \"2020-03-03T06:58:28.173Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"properties\": {\r\n \"weeklyRetention\": \"P1W\",\r\n \"monthlyRetention\": \"PT0S\",\r\n \"yearlyRetention\": \"PT0S\",\r\n \"weekOfYear\": 0\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-ltr-policy-test/backupLongTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicy\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyAzureAsyncOperation/a0624928-18b3-4696-a23f-19856493b7f5?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9tYW5hZ2VkSW5zdGFuY2VMb25nVGVybVJldGVudGlvblBvbGljeUF6dXJlQXN5bmNPcGVyYXRpb24vYTA2MjQ5MjgtMThiMy00Njk2LWEyM2YtMTk4NTY0OTNiN2Y1P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-ltr-policy-test/backupLongTermRetentionPolicies/default?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLWx0ci1wb2xpY3ktdGVzdC9iYWNrdXBMb25nVGVybVJldGVudGlvblBvbGljaWVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "be46a622-3480-4ebd-8470-3c46f52d7a27" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -659,23 +644,20 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-request-id": [ - "fb9395e5-ae4c-4d44-adb8-acab776444a4" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "2049e0d1-53be-4eeb-a90e-c079de0520fe" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], "x-ms-correlation-request-id": [ - "17589760-ac17-4c06-a0f5-9758ea833ca3" + "153f0c2d-d1e8-47b4-a7f6-fb7aceca1e9b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T065845Z:17589760-ac17-4c06-a0f5-9758ea833ca3" + "NORTHEUROPE:20200304T012227Z:153f0c2d-d1e8-47b4-a7f6-fb7aceca1e9b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -684,10 +666,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 06:58:45 GMT" + "Wed, 04 Mar 2020 01:22:26 GMT" ], "Content-Length": [ - "108" + "420" ], "Content-Type": [ "application/json; charset=utf-8" @@ -696,20 +678,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a0624928-18b3-4696-a23f-19856493b7f5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T06:58:28.173Z\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"weeklyRetention\": \"P1W\",\r\n \"monthlyRetention\": \"PT0S\",\r\n \"yearlyRetention\": \"PT0S\",\r\n \"weekOfYear\": 0\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-ltr-policy-test/backupLongTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicy\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyAzureAsyncOperation/a0624928-18b3-4696-a23f-19856493b7f5?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9tYW5hZ2VkSW5zdGFuY2VMb25nVGVybVJldGVudGlvblBvbGljeUF6dXJlQXN5bmNPcGVyYXRpb24vYTA2MjQ5MjgtMThiMy00Njk2LWEyM2YtMTk4NTY0OTNiN2Y1P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-ltr-policy-test/backupLongTermRetentionPolicies/default?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLWx0ci1wb2xpY3ktdGVzdC9iYWNrdXBMb25nVGVybVJldGVudGlvblBvbGljaWVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"weeklyRetention\": \"P1W\",\r\n \"weekOfYear\": 0\r\n }\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "6a37a655-a02a-42c4-9157-b036f0230f5f" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "80" ] }, "ResponseHeaders": { @@ -719,23 +713,29 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyOperationResults/4c538ab4-6731-40f7-8e02-5c624cec4ca6?api-version=2018-06-01-preview" + ], "Retry-After": [ "15" ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyAzureAsyncOperation/4c538ab4-6731-40f7-8e02-5c624cec4ca6?api-version=2018-06-01-preview" + ], "x-ms-request-id": [ - "ad4e38c0-e40c-4b29-882f-08db4280748e" + "4c538ab4-6731-40f7-8e02-5c624cec4ca6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "729c0508-9538-4cd0-b562-09dc7787330e" + "b994f06a-aa00-4d8b-ace6-e843967a9238" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T065901Z:729c0508-9538-4cd0-b562-09dc7787330e" + "NORTHEUROPE:20200304T012210Z:b994f06a-aa00-4d8b-ace6-e843967a9238" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -744,10 +744,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 06:59:01 GMT" + "Wed, 04 Mar 2020 01:22:10 GMT" ], "Content-Length": [ - "108" + "90" ], "Content-Type": [ "application/json; charset=utf-8" @@ -756,12 +756,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a0624928-18b3-4696-a23f-19856493b7f5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T06:58:28.173Z\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"operation\": \"UpsertDatabaseBackupArchivalPolicyV2\",\r\n \"startTime\": \"2020-03-04T01:22:10.74Z\"\r\n}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyAzureAsyncOperation/a0624928-18b3-4696-a23f-19856493b7f5?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9tYW5hZ2VkSW5zdGFuY2VMb25nVGVybVJldGVudGlvblBvbGljeUF6dXJlQXN5bmNPcGVyYXRpb24vYTA2MjQ5MjgtMThiMy00Njk2LWEyM2YtMTk4NTY0OTNiN2Y1P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyAzureAsyncOperation/4c538ab4-6731-40f7-8e02-5c624cec4ca6?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9tYW5hZ2VkSW5zdGFuY2VMb25nVGVybVJldGVudGlvblBvbGljeUF6dXJlQXN5bmNPcGVyYXRpb24vNGM1MzhhYjQtNjczMS00MGY3LThlMDItNWM2MjRjZWM0Y2E2P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -769,7 +769,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -783,19 +783,19 @@ "15" ], "x-ms-request-id": [ - "d494b56f-5be9-4f8d-83a4-552eb94ea1a4" + "4c246880-d5ab-40dc-90a5-84e9aa19df78" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14984" ], "x-ms-correlation-request-id": [ - "d6dad000-7988-4bc6-993e-e29c97ca74d3" + "f582e877-e1d5-4424-aa1a-ff143209fd12" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T065916Z:d6dad000-7988-4bc6-993e-e29c97ca74d3" + "NORTHEUROPE:20200304T012226Z:f582e877-e1d5-4424-aa1a-ff143209fd12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -804,10 +804,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 06:59:16 GMT" + "Wed, 04 Mar 2020 01:22:25 GMT" ], "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -816,12 +816,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a0624928-18b3-4696-a23f-19856493b7f5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-03T06:58:28.173Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"4c538ab4-6731-40f7-8e02-5c624cec4ca6\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-04T01:22:10.74Z\"\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "8cfb8b62-bcd6-4713-89ad-18097f75cc5b" + "SubscriptionId": "709b4d09-b251-4ae8-8998-e1954ee45cf9" } } \ No newline at end of file diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionResourceGroupBasedBackup.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionResourceGroupBasedBackup.json index 0951c2d801d6..84a43d3182d7 100644 --- a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionResourceGroupBasedBackup.json +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionResourceGroupBasedBackup.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZUJhY2t1cHM/b25seUxhdGVzdFBlckRhdGFiYXNlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f691d7d-d99c-4d00-a74d-fc61051cbb80" + "2a9b863f-bb88-43f4-83f5-1bdb3a53e71a" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -27,7 +27,7 @@ "no-cache" ], "x-ms-request-id": [ - "6cd2b76f-0576-41ae-8bad-0b2445c1e4a4" + "ebde37ae-40e3-49b0-bf74-e089e5509579" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -36,10 +36,10 @@ "14999" ], "x-ms-correlation-request-id": [ - "a47a4924-706f-46c2-9c52-ef814fe1a216" + "b23f3a14-d49d-4e28-95a0-fe15a288bb1f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T213507Z:a47a4924-706f-46c2-9c52-ef814fe1a216" + "NORTHEUROPE:20200304T013206Z:b23f3a14-d49d-4e28-95a0-fe15a288bb1f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,10 +48,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 21:35:07 GMT" + "Wed, 04 Mar 2020 01:32:06 GMT" ], "Content-Length": [ - "12117" + "11378" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60,17 +60,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-455\",\r\n \"backupTime\": \"2020-02-27T20:49:41Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:23:48.8462413Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-455/longTermRetentionManagedInstanceBackups/af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"name\": \"af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZUJhY2t1cHM/b25seUxhdGVzdFBlckRhdGFiYXNlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "56433c46-e84b-4ba9-9bf3-7a2a2b7c37e6" + "f1fe093a-366d-4d5c-b9ae-e98ff77badb6" ], "Accept-Language": [ "en-US" @@ -79,7 +79,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -90,7 +90,7 @@ "no-cache" ], "x-ms-request-id": [ - "abeb2214-e534-4495-bd03-c212fa3ba9e0" + "6bfc9408-5d4d-417a-9171-35ed64477934" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -99,10 +99,10 @@ "14987" ], "x-ms-correlation-request-id": [ - "27a4789f-9639-44ed-badb-46ff242d9d90" + "5e783fa1-587e-4b1d-90ce-4977ade390ce" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T213512Z:27a4789f-9639-44ed-badb-46ff242d9d90" + "NORTHEUROPE:20200304T013211Z:5e783fa1-587e-4b1d-90ce-4977ade390ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,10 +111,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 21:35:12 GMT" + "Wed, 04 Mar 2020 01:32:11 GMT" ], "Content-Length": [ - "12117" + "11378" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,17 +123,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-455\",\r\n \"backupTime\": \"2020-02-27T20:49:41Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:23:48.8462413Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-455/longTermRetentionManagedInstanceBackups/af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"name\": \"af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZUJhY2t1cHM/b25seUxhdGVzdFBlckRhdGFiYXNlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2528935e-4dd3-4bf1-96fc-03b271e1fd97" + "c9bd09a4-f081-4110-9209-bf04b009cc8d" ], "Accept-Language": [ "en-US" @@ -142,7 +142,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -153,7 +153,7 @@ "no-cache" ], "x-ms-request-id": [ - "d5b5ab7f-e4c5-4949-9c5f-8a624a9ad2ff" + "0c9635a3-7086-4377-a706-3f4dbe202391" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -162,10 +162,10 @@ "14998" ], "x-ms-correlation-request-id": [ - "dc715893-93b2-4a61-b40a-4aa489ff4722" + "50bcb261-1c83-45bc-ac98-54f447b92bfd" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T213508Z:dc715893-93b2-4a61-b40a-4aa489ff4722" + "NORTHEUROPE:20200304T013207Z:50bcb261-1c83-45bc-ac98-54f447b92bfd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,10 +174,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 21:35:07 GMT" + "Wed, 04 Mar 2020 01:32:06 GMT" ], "Content-Length": [ - "12117" + "11378" ], "Content-Type": [ "application/json; charset=utf-8" @@ -186,17 +186,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-455\",\r\n \"backupTime\": \"2020-02-27T20:49:41Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:23:48.8462413Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-455/longTermRetentionManagedInstanceBackups/af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"name\": \"af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy90ZXN0L2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcz9vbmx5TGF0ZXN0UGVyRGF0YWJhc2U9ZmFsc2UmYXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "90ed0d35-91d6-464f-9ef5-e7f03f275a2d" + "bbbf81ca-ac68-4c28-a488-50e7e87f8d8e" ], "Accept-Language": [ "en-US" @@ -205,7 +205,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -216,7 +216,7 @@ "no-cache" ], "x-ms-request-id": [ - "55f754fa-dd26-4747-8ac0-c661efe906af" + "b1fa6c4d-6916-4d51-9980-a17ea51b4422" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -225,10 +225,10 @@ "14997" ], "x-ms-correlation-request-id": [ - "e5fedd0b-4c2f-41b2-8ba6-b5af1367db3e" + "545cf2ab-ce76-420d-9d76-cadb986476f4" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T213508Z:e5fedd0b-4c2f-41b2-8ba6-b5af1367db3e" + "NORTHEUROPE:20200304T013207Z:545cf2ab-ce76-420d-9d76-cadb986476f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,10 +237,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 21:35:07 GMT" + "Wed, 04 Mar 2020 01:32:06 GMT" ], "Content-Length": [ - "1543" + "802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -249,17 +249,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy90ZXN0L2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcz9vbmx5TGF0ZXN0UGVyRGF0YWJhc2U9ZmFsc2UmYXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "65a446ae-343d-4e6c-be32-560f694d62ce" + "7044a798-16fe-48ad-b0b4-44a414c295e2" ], "Accept-Language": [ "en-US" @@ -268,7 +268,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -279,7 +279,7 @@ "no-cache" ], "x-ms-request-id": [ - "ee804c48-5432-4867-93a3-443aa03a77b5" + "2cb4c121-d7b6-4ada-a59d-b872a2b0ca13" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -288,10 +288,10 @@ "14994" ], "x-ms-correlation-request-id": [ - "f72f8c2d-e344-4d2f-a2d4-b8b749ec6e1c" + "f02683f3-ef05-4b90-9f46-8b0fa317a11e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T213509Z:f72f8c2d-e344-4d2f-a2d4-b8b749ec6e1c" + "NORTHEUROPE:20200304T013208Z:f02683f3-ef05-4b90-9f46-8b0fa317a11e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -300,10 +300,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 21:35:08 GMT" + "Wed, 04 Mar 2020 01:32:08 GMT" ], "Content-Length": [ - "1543" + "802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -312,17 +312,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94%3B132271661370000000?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy90ZXN0L2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcy80OTIzYTBjMS1iZmM0LTQ0ZTMtYmY4My0zZWEzZmM3NDFkOTQlM0IxMzIyNzE2NjEzNzAwMDAwMDA/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b%3B132268250550000000?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy90ZXN0L2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcy81ZTNmNWY2Yy1kZjZmLTRjODItYTQ0Ny03NDBlZTcxNTNiMmIlM0IxMzIyNjgyNTA1NTAwMDAwMDA/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d677dd0-784e-4509-a1a9-c90c027c8e25" + "ea0fc3bf-ccda-431b-9047-437196358731" ], "Accept-Language": [ "en-US" @@ -331,7 +331,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -342,7 +342,7 @@ "no-cache" ], "x-ms-request-id": [ - "7ef6b02d-6ed6-4e43-a4b1-2bedab172de4" + "efbeec87-a18e-4004-abd6-e5494cd9aa6b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -351,10 +351,10 @@ "14996" ], "x-ms-correlation-request-id": [ - "d0f92daf-a14b-451d-af11-2a5a05551c03" + "d7437a5a-c39f-413e-b2e3-390b1d4cfd9b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T213509Z:d0f92daf-a14b-451d-af11-2a5a05551c03" + "NORTHEUROPE:20200304T013208Z:d7437a5a-c39f-413e-b2e3-390b1d4cfd9b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -363,10 +363,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 21:35:08 GMT" + "Wed, 04 Mar 2020 01:32:08 GMT" ], "Content-Length": [ - "740" + "790" ], "Content-Type": [ "application/json; charset=utf-8" @@ -375,17 +375,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94%3B132271661370000000?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy90ZXN0L2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcy80OTIzYTBjMS1iZmM0LTQ0ZTMtYmY4My0zZWEzZmM3NDFkOTQlM0IxMzIyNzE2NjEzNzAwMDAwMDA/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b%3B132268250550000000?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy90ZXN0L2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcy81ZTNmNWY2Yy1kZjZmLTRjODItYTQ0Ny03NDBlZTcxNTNiMmIlM0IxMzIyNjgyNTA1NTAwMDAwMDA/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "93be1e20-61e9-4a3b-9c0e-37c12a6db69d" + "963d5232-ad3b-48bb-b1ee-4af81ea14819" ], "Accept-Language": [ "en-US" @@ -394,7 +394,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -405,7 +405,7 @@ "no-cache" ], "x-ms-request-id": [ - "84ea548c-cbb3-4154-993f-665faf3fbf3e" + "f7ff43aa-39c7-4846-a587-8a0f9601b6d1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -414,10 +414,10 @@ "14992" ], "x-ms-correlation-request-id": [ - "eaa645d7-9783-44d5-ac27-fbe1c99c0095" + "2490841b-5ab3-4241-9c4c-d204ed254eb7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T213510Z:eaa645d7-9783-44d5-ac27-fbe1c99c0095" + "NORTHEUROPE:20200304T013209Z:2490841b-5ab3-4241-9c4c-d204ed254eb7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -426,10 +426,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 21:35:09 GMT" + "Wed, 04 Mar 2020 01:32:09 GMT" ], "Content-Length": [ - "740" + "790" ], "Content-Type": [ "application/json; charset=utf-8" @@ -438,17 +438,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test?api-version=2019-06-01-preview", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test?api-version=2019-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3Rlc3Q/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "75de341f-419e-40ef-bef8-5a33a09b4a56" + "6f4d9896-f995-40f5-bcab-6822cd2da90e" ], "Accept-Language": [ "en-US" @@ -457,7 +457,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -468,7 +468,7 @@ "no-cache" ], "x-ms-request-id": [ - "7155b9cc-2dde-44a1-875a-1d2e5e6c0bd8" + "7d0da29c-deb9-4d3b-a4f4-70c007790193" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -477,10 +477,10 @@ "14995" ], "x-ms-correlation-request-id": [ - "6808c916-7948-4e21-abd5-d79dd90460e3" + "6f56f312-4f70-4a72-a8be-17667f1d48dd" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T213509Z:6808c916-7948-4e21-abd5-d79dd90460e3" + "NORTHEUROPE:20200304T013208Z:6f56f312-4f70-4a72-a8be-17667f1d48dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -489,7 +489,7 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 21:35:08 GMT" + "Wed, 04 Mar 2020 01:32:08 GMT" ], "Content-Length": [ "463" @@ -501,17 +501,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-02-26T04:46:02.857Z\",\r\n \"earliestRestorePoint\": \"2020-02-26T04:49:01.92Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test\",\r\n \"name\": \"test\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-02-26T04:46:02.857Z\",\r\n \"earliestRestorePoint\": \"2020-02-26T04:49:01.92Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test\",\r\n \"name\": \"test\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test?api-version=2019-06-01-preview", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test?api-version=2019-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3Rlc3Q/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a9079c7-bb42-4e5b-850c-3b02cbe9fa43" + "af4ce65f-8630-43ba-97ad-1fb6e5a9b27e" ], "Accept-Language": [ "en-US" @@ -520,7 +520,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -531,7 +531,7 @@ "no-cache" ], "x-ms-request-id": [ - "dcd9cef4-3c57-4706-8be0-a72705a58407" + "b98643f1-cc47-4c0f-bc2a-991b69baf067" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -540,10 +540,10 @@ "14993" ], "x-ms-correlation-request-id": [ - "5ca37d66-a1f2-4dad-8a97-4eee51056181" + "228753ab-51cb-4458-b005-37626c953714" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T213510Z:5ca37d66-a1f2-4dad-8a97-4eee51056181" + "NORTHEUROPE:20200304T013209Z:228753ab-51cb-4458-b005-37626c953714" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -552,7 +552,7 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 21:35:09 GMT" + "Wed, 04 Mar 2020 01:32:09 GMT" ], "Content-Length": [ "463" @@ -564,17 +564,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-02-26T04:46:02.857Z\",\r\n \"earliestRestorePoint\": \"2020-02-26T04:49:01.92Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test\",\r\n \"name\": \"test\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-02-26T04:46:02.857Z\",\r\n \"earliestRestorePoint\": \"2020-02-26T04:49:01.92Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test\",\r\n \"name\": \"test\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test?api-version=2019-06-01-preview", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test?api-version=2019-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3Rlc3Q/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa03bde7-cd80-4762-a221-0484beff310a" + "558d645d-60e8-4c23-a7fd-4d9cb3e47dd4" ], "Accept-Language": [ "en-US" @@ -583,7 +583,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -594,7 +594,7 @@ "no-cache" ], "x-ms-request-id": [ - "2967f1e3-60c6-4876-b1ad-49d117aabf6f" + "27ed9d30-aeff-4d2e-9723-3a597c67bde3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -603,10 +603,10 @@ "14989" ], "x-ms-correlation-request-id": [ - "f6598899-500f-491a-9de6-74fef84bebf3" + "e259c26c-d9fa-4494-8fc4-a3b90f93698a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T213511Z:f6598899-500f-491a-9de6-74fef84bebf3" + "NORTHEUROPE:20200304T013210Z:e259c26c-d9fa-4494-8fc4-a3b90f93698a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -615,7 +615,7 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 21:35:11 GMT" + "Wed, 04 Mar 2020 01:32:10 GMT" ], "Content-Length": [ "463" @@ -627,17 +627,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-02-26T04:46:02.857Z\",\r\n \"earliestRestorePoint\": \"2020-02-26T04:49:01.92Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test\",\r\n \"name\": \"test\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-02-26T04:46:02.857Z\",\r\n \"earliestRestorePoint\": \"2020-02-26T04:49:01.92Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test\",\r\n \"name\": \"test\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=true&api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=true&api-version=2018-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy90ZXN0L2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcz9vbmx5TGF0ZXN0UGVyRGF0YWJhc2U9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc36ab25-9ae8-44e5-80de-b4ce22d99eb1" + "8bc2e185-99dc-4005-8897-64cc5dd9bd2a" ], "Accept-Language": [ "en-US" @@ -646,7 +646,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -657,7 +657,7 @@ "no-cache" ], "x-ms-request-id": [ - "e9008c05-49ec-43b2-b885-69517516c556" + "a3a15e6b-cfd7-4bc8-a322-d8553e433180" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -666,10 +666,10 @@ "14991" ], "x-ms-correlation-request-id": [ - "31872112-5c0a-403b-8186-95ccf8b9b7b3" + "a84a5950-dae6-4de4-84e7-d04f7a6c24b0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T213510Z:31872112-5c0a-403b-8186-95ccf8b9b7b3" + "NORTHEUROPE:20200304T013209Z:a84a5950-dae6-4de4-84e7-d04f7a6c24b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -678,10 +678,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 21:35:09 GMT" + "Wed, 04 Mar 2020 01:32:09 GMT" ], "Content-Length": [ - "1543" + "802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -690,17 +690,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=true&api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=true&api-version=2018-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy90ZXN0L2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcz9vbmx5TGF0ZXN0UGVyRGF0YWJhc2U9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3488a582-1e4b-4d11-8105-253a3710a7cb" + "88e2dea8-5374-4167-ace1-b8cdb498d836" ], "Accept-Language": [ "en-US" @@ -709,7 +709,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -720,7 +720,7 @@ "no-cache" ], "x-ms-request-id": [ - "0a61ec02-595d-4a09-81d1-d16528ab170a" + "d0434cf5-b4f2-4158-8720-ff0c1c103209" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -729,10 +729,10 @@ "14988" ], "x-ms-correlation-request-id": [ - "f763395d-2034-4b73-9455-6645e21be42a" + "3d2c04af-8289-491d-a48c-8e25be0b3580" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T213512Z:f763395d-2034-4b73-9455-6645e21be42a" + "NORTHEUROPE:20200304T013210Z:3d2c04af-8289-491d-a48c-8e25be0b3580" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -741,10 +741,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 21:35:11 GMT" + "Wed, 04 Mar 2020 01:32:10 GMT" ], "Content-Length": [ - "1543" + "802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -753,17 +753,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&databaseState=All&api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&databaseState=All&api-version=2018-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZUJhY2t1cHM/b25seUxhdGVzdFBlckRhdGFiYXNlPWZhbHNlJmRhdGFiYXNlU3RhdGU9QWxsJmFwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "81c068b6-3b90-4ef1-889d-235d6027c888" + "801db448-83a5-4ab7-9905-eb5cb92a81ad" ], "Accept-Language": [ "en-US" @@ -772,7 +772,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -783,7 +783,7 @@ "no-cache" ], "x-ms-request-id": [ - "15ee0280-382e-4afd-b34d-a0f2ff60f01c" + "c9baa187-9688-4455-9ea2-6d1c1dd2dd19" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -792,10 +792,10 @@ "14990" ], "x-ms-correlation-request-id": [ - "2056ca1a-038e-497b-936a-e73bfb6a66be" + "fd72d1d5-19fb-4213-a910-afe6768fb085" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T213511Z:2056ca1a-038e-497b-936a-e73bfb6a66be" + "NORTHEUROPE:20200304T013210Z:fd72d1d5-19fb-4213-a910-afe6768fb085" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -804,10 +804,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 21:35:11 GMT" + "Wed, 04 Mar 2020 01:32:10 GMT" ], "Content-Length": [ - "12117" + "11378" ], "Content-Type": [ "application/json; charset=utf-8" @@ -816,17 +816,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-455\",\r\n \"backupTime\": \"2020-02-27T20:49:41Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:23:48.8462413Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-455/longTermRetentionManagedInstanceBackups/af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"name\": \"af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi?api-version=2018-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3A/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c921773a-463d-42dd-a14b-af9524c71578" + "60e0820c-57cb-4845-8fac-3c7d211127e4" ], "Accept-Language": [ "en-US" @@ -835,7 +835,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -846,7 +846,7 @@ "no-cache" ], "x-ms-request-id": [ - "dee77413-71af-433d-83c0-6474860c1260" + "389924f9-95d1-472a-90e1-3aff93209fc1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -855,10 +855,10 @@ "14986" ], "x-ms-correlation-request-id": [ - "63fea1c5-7a9a-474e-8ef0-59f7d7821077" + "e9753e8d-2a78-4c0c-9f6f-14b804a9dad7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T213512Z:63fea1c5-7a9a-474e-8ef0-59f7d7821077" + "NORTHEUROPE:20200304T013211Z:e9753e8d-2a78-4c0c-9f6f-14b804a9dad7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -867,7 +867,7 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 21:35:12 GMT" + "Wed, 04 Mar 2020 01:32:11 GMT" ], "Content-Length": [ "873" @@ -879,17 +879,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 8\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"ps-test-mi.lkgt1aeda54f909eb.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"cloudSA\",\r\n \"subnetId\": \"/subscriptions/741fd0f5-9cb8-442c-91c3-3ef4ca231c2a/resourceGroups/cloudlifter/providers/Microsoft.ClassicNetwork/virtualNetworks/cloudlifter-runners-stage-sea/subnets/Gen5GeoDR\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 8,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"lkgt1aeda54f909eb\",\r\n \"publicDataEndpointEnabled\": true,\r\n \"proxyOverride\": \"Proxy\",\r\n \"timezoneId\": \"UTC\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi\",\r\n \"name\": \"ps-test-mi\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 8\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"ps-test-mi.lkgt1aeda54f909eb.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"cloudSA\",\r\n \"subnetId\": \"/subscriptions/741fd0f5-9cb8-442c-91c3-3ef4ca231c2a/resourceGroups/cloudlifter/providers/Microsoft.ClassicNetwork/virtualNetworks/cloudlifter-runners-stage-sea/subnets/Gen5GeoDR\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 8,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"lkgt1aeda54f909eb\",\r\n \"publicDataEndpointEnabled\": true,\r\n \"proxyOverride\": \"Proxy\",\r\n \"timezoneId\": \"UTC\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi\",\r\n \"name\": \"ps-test-mi\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-rest-rg-d096425b-f6d3-4dc2-acdf-670ed823dfb1?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdC1yZy1kMDk2NDI1Yi1mNmQzLTRkYzItYWNkZi02NzBlZDgyM2RmYjE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-restore-with-rg-x?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS13aXRoLXJnLXg/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"createMode\": \"RestoreLongTermRetentionBackup\",\r\n \"longTermRetentionBackupResourceId\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"createMode\": \"RestoreLongTermRetentionBackup\",\r\n \"longTermRetentionBackupResourceId\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "af34bac1-8d3e-4499-aa1a-273885c2b7b4" + "b68e3c8a-4183-42f2-94d4-c87872dc8389" ], "Accept-Language": [ "en-US" @@ -898,7 +898,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -915,16 +915,16 @@ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/14458652-6e63-47f8-a321-8912a478b9ef?api-version=2019-06-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/d8d33f75-5fe3-4c68-a33c-92eb7dca1177?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/14458652-6e63-47f8-a321-8912a478b9ef?api-version=2019-06-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/d8d33f75-5fe3-4c68-a33c-92eb7dca1177?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "14458652-6e63-47f8-a321-8912a478b9ef" + "d8d33f75-5fe3-4c68-a33c-92eb7dca1177" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -933,10 +933,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "7f28b47c-71b1-4179-9156-78b5477cf006" + "65984f87-f21d-4954-adb7-fb501480b7a9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T213514Z:7f28b47c-71b1-4179-9156-78b5477cf006" + "NORTHEUROPE:20200304T013215Z:65984f87-f21d-4954-adb7-fb501480b7a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -945,10 +945,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 21:35:14 GMT" + "Wed, 04 Mar 2020 01:32:15 GMT" ], "Content-Length": [ - "94" + "95" ], "Content-Type": [ "application/json; charset=utf-8" @@ -957,12 +957,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateManagedRestoreFromLtrBackupRequest\",\r\n \"startTime\": \"2020-03-03T21:35:14.25Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateManagedRestoreFromLtrBackupRequest\",\r\n \"startTime\": \"2020-03-04T01:32:15.793Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/14458652-6e63-47f8-a321-8912a478b9ef?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMTQ0NTg2NTItNmU2My00N2Y4LWEzMjEtODkxMmE0NzhiOWVmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/d8d33f75-5fe3-4c68-a33c-92eb7dca1177?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDhkMzNmNzUtNWZlMy00YzY4LWEzM2MtOTJlYjdkY2ExMTc3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -970,7 +970,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -984,7 +984,7 @@ "15" ], "x-ms-request-id": [ - "87735ac4-0583-4ec7-b7f1-0b97fb37c871" + "1c1f53fb-5b3a-415d-8100-b72692930149" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -993,10 +993,10 @@ "14985" ], "x-ms-correlation-request-id": [ - "4df60cd1-b355-4447-9e8c-25ce3490ae84" + "27526763-f5f5-4be7-91d8-821512dfd610" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T213529Z:4df60cd1-b355-4447-9e8c-25ce3490ae84" + "NORTHEUROPE:20200304T013231Z:27526763-f5f5-4be7-91d8-821512dfd610" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1005,10 +1005,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 21:35:28 GMT" + "Wed, 04 Mar 2020 01:32:31 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1017,12 +1017,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"14458652-6e63-47f8-a321-8912a478b9ef\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T21:35:14.25Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d8d33f75-5fe3-4c68-a33c-92eb7dca1177\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T01:32:15.793Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/14458652-6e63-47f8-a321-8912a478b9ef?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMTQ0NTg2NTItNmU2My00N2Y4LWEzMjEtODkxMmE0NzhiOWVmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/d8d33f75-5fe3-4c68-a33c-92eb7dca1177?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDhkMzNmNzUtNWZlMy00YzY4LWEzM2MtOTJlYjdkY2ExMTc3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1030,7 +1030,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -1044,7 +1044,7 @@ "15" ], "x-ms-request-id": [ - "14c4125e-0495-4d58-b63e-6d2e40bdc1d7" + "1d6f33c1-181e-49d9-9b8b-a565afcdec10" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1053,10 +1053,10 @@ "14984" ], "x-ms-correlation-request-id": [ - "70b57996-0ae9-4ff6-89f3-1727b8d36183" + "76490f26-7f19-408b-9bd7-d2f2242fc475" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T213545Z:70b57996-0ae9-4ff6-89f3-1727b8d36183" + "NORTHEUROPE:20200304T013246Z:76490f26-7f19-408b-9bd7-d2f2242fc475" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1065,10 +1065,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 21:35:45 GMT" + "Wed, 04 Mar 2020 01:32:46 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1077,12 +1077,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"14458652-6e63-47f8-a321-8912a478b9ef\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T21:35:14.25Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d8d33f75-5fe3-4c68-a33c-92eb7dca1177\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T01:32:15.793Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/14458652-6e63-47f8-a321-8912a478b9ef?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMTQ0NTg2NTItNmU2My00N2Y4LWEzMjEtODkxMmE0NzhiOWVmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/d8d33f75-5fe3-4c68-a33c-92eb7dca1177?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDhkMzNmNzUtNWZlMy00YzY4LWEzM2MtOTJlYjdkY2ExMTc3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1090,7 +1090,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -1104,19 +1104,19 @@ "15" ], "x-ms-request-id": [ - "e71507a4-ca3c-4b3b-8d4a-4d62b9f0a682" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "254169d4-0140-4862-95f4-b05ab0952c9c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "14983" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "f7e07659-1b07-436d-a00c-412cac1c1eff" + "e8d3a1eb-99c2-4c18-b9b7-f56bb1832a60" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T213601Z:f7e07659-1b07-436d-a00c-412cac1c1eff" + "NORTHEUROPE:20200304T013302Z:e8d3a1eb-99c2-4c18-b9b7-f56bb1832a60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1125,10 +1125,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 21:36:00 GMT" + "Wed, 04 Mar 2020 01:33:01 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1137,12 +1137,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"14458652-6e63-47f8-a321-8912a478b9ef\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T21:35:14.25Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d8d33f75-5fe3-4c68-a33c-92eb7dca1177\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T01:32:15.793Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/14458652-6e63-47f8-a321-8912a478b9ef?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMTQ0NTg2NTItNmU2My00N2Y4LWEzMjEtODkxMmE0NzhiOWVmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/d8d33f75-5fe3-4c68-a33c-92eb7dca1177?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDhkMzNmNzUtNWZlMy00YzY4LWEzM2MtOTJlYjdkY2ExMTc3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1150,7 +1150,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -1164,19 +1164,19 @@ "15" ], "x-ms-request-id": [ - "7fd2bb2f-9624-4706-a7fb-6b6c7a10be01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "d7507a06-0b1d-43ac-bbb0-1fcef4144fad" ], "x-ms-ratelimit-remaining-subscription-reads": [ "14982" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "fc1f3194-65af-41d5-b7de-239757ff7554" + "8411a136-cf28-4946-b42e-816a550cd5be" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T213616Z:fc1f3194-65af-41d5-b7de-239757ff7554" + "NORTHEUROPE:20200304T013317Z:8411a136-cf28-4946-b42e-816a550cd5be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1185,10 +1185,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 21:36:15 GMT" + "Wed, 04 Mar 2020 01:33:17 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1197,12 +1197,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"14458652-6e63-47f8-a321-8912a478b9ef\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T21:35:14.25Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d8d33f75-5fe3-4c68-a33c-92eb7dca1177\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T01:32:15.793Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/14458652-6e63-47f8-a321-8912a478b9ef?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMTQ0NTg2NTItNmU2My00N2Y4LWEzMjEtODkxMmE0NzhiOWVmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/d8d33f75-5fe3-4c68-a33c-92eb7dca1177?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDhkMzNmNzUtNWZlMy00YzY4LWEzM2MtOTJlYjdkY2ExMTc3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1210,7 +1210,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -1224,7 +1224,7 @@ "15" ], "x-ms-request-id": [ - "0c7d4c80-93fb-445c-924f-e2e85915b500" + "3dabc791-f5ed-43b4-80af-74701341821b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1233,10 +1233,10 @@ "14981" ], "x-ms-correlation-request-id": [ - "9da6e6fb-82e0-4457-89af-79ba09a6c76b" + "4165c174-b294-490a-8c3b-370ccb67f0f1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T213631Z:9da6e6fb-82e0-4457-89af-79ba09a6c76b" + "NORTHEUROPE:20200304T013333Z:4165c174-b294-490a-8c3b-370ccb67f0f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1245,10 +1245,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 21:36:31 GMT" + "Wed, 04 Mar 2020 01:33:33 GMT" ], "Content-Length": [ - "106" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1257,12 +1257,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"14458652-6e63-47f8-a321-8912a478b9ef\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-03T21:35:14.25Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d8d33f75-5fe3-4c68-a33c-92eb7dca1177\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T01:32:15.793Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-rest-rg-d096425b-f6d3-4dc2-acdf-670ed823dfb1?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdC1yZy1kMDk2NDI1Yi1mNmQzLTRkYzItYWNkZi02NzBlZDgyM2RmYjE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/d8d33f75-5fe3-4c68-a33c-92eb7dca1177?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDhkMzNmNzUtNWZlMy00YzY4LWEzM2MtOTJlYjdkY2ExMTc3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1270,7 +1270,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -1280,8 +1280,11 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "15" + ], "x-ms-request-id": [ - "69f19805-703b-4b82-80f2-2e966da2fb3e" + "26ef23c1-ebb4-42c0-bab5-3567c4c238ef" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1290,10 +1293,10 @@ "14980" ], "x-ms-correlation-request-id": [ - "d770e675-8b09-4795-b3fd-d21ecd8d9e69" + "fc9d1dae-7016-42ef-b599-06975473a9b5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T213632Z:d770e675-8b09-4795-b3fd-d21ecd8d9e69" + "NORTHEUROPE:20200304T013348Z:fc9d1dae-7016-42ef-b599-06975473a9b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1302,10 +1305,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 21:36:31 GMT" + "Wed, 04 Mar 2020 01:33:48 GMT" ], "Content-Length": [ - "510" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1314,26 +1317,80 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-03T21:35:14.563Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-rest-rg-d096425b-f6d3-4dc2-acdf-670ed823dfb1\",\r\n \"name\": \"ps-test-rest-rg-d096425b-f6d3-4dc2-acdf-670ed823dfb1\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d8d33f75-5fe3-4c68-a33c-92eb7dca1177\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T01:32:15.793Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-rest-rg-d096425b-f6d3-4dc2-acdf-670ed823dfb1?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdC1yZy1kMDk2NDI1Yi1mNmQzLTRkYzItYWNkZi02NzBlZDgyM2RmYjE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/d8d33f75-5fe3-4c68-a33c-92eb7dca1177?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDhkMzNmNzUtNWZlMy00YzY4LWEzM2MtOTJlYjdkY2ExMTc3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "313dc8d3-db6f-4675-9867-7c87d84a505f" + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], - "Accept-Language": [ - "en-US" + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "4bd45c68-a4d0-4583-a231-96e15640e9a6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "66248f38-6395-4054-8260-f20ba336bed0" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200304T013404Z:66248f38-6395-4054-8260-f20ba336bed0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Mar 2020 01:34:03 GMT" + ], + "Content-Length": [ + "107" ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"d8d33f75-5fe3-4c68-a33c-92eb7dca1177\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-04T01:32:15.793Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-restore-with-rg-x?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS13aXRoLXJnLXg/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -1344,19 +1401,19 @@ "no-cache" ], "x-ms-request-id": [ - "724bf50b-1f4e-47c1-b0dd-8a3f7e6cdaec" + "ba4b6f22-816c-4fa8-94b2-fb028969051c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14978" ], "x-ms-correlation-request-id": [ - "bc136e53-a445-4e6e-8411-c57f0e595fbf" + "41d18dc3-63fc-48fa-8627-b0be649abf55" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T213632Z:bc136e53-a445-4e6e-8411-c57f0e595fbf" + "NORTHEUROPE:20200304T013404Z:41d18dc3-63fc-48fa-8627-b0be649abf55" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1365,10 +1422,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 21:36:32 GMT" + "Wed, 04 Mar 2020 01:34:03 GMT" ], "Content-Length": [ - "510" + "456" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1377,17 +1434,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-03T21:35:14.563Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-rest-rg-d096425b-f6d3-4dc2-acdf-670ed823dfb1\",\r\n \"name\": \"ps-test-rest-rg-d096425b-f6d3-4dc2-acdf-670ed823dfb1\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-04T01:32:16.107Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-restore-with-rg-x\",\r\n \"name\": \"ps-test-restore-with-rg-x\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-rest-rg-d096425b-f6d3-4dc2-acdf-670ed823dfb1?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdC1yZy1kMDk2NDI1Yi1mNmQzLTRkYzItYWNkZi02NzBlZDgyM2RmYjE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-restore-with-rg-x?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS13aXRoLXJnLXg/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "88be70b8-45c2-4af1-9b48-bd5a4c500f6c" + "a7428714-8d3c-433a-8924-19bc795a9c81" ], "Accept-Language": [ "en-US" @@ -1396,7 +1453,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -1406,29 +1463,20 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/2e45d33e-2b80-41a1-a551-72d54f0f8ecf?api-version=2019-06-01-preview" - ], - "Retry-After": [ - "15" - ], - "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/2e45d33e-2b80-41a1-a551-72d54f0f8ecf?api-version=2019-06-01-preview" - ], "x-ms-request-id": [ - "2e45d33e-2b80-41a1-a551-72d54f0f8ecf" + "11a727bf-cc1c-4bdc-9893-1e3b991eba75" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" ], "x-ms-correlation-request-id": [ - "b4d04cf7-e05f-478a-8a25-55ee033511dd" + "7bd8c3b6-a412-4001-9b27-c892176d9675" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T213632Z:b4d04cf7-e05f-478a-8a25-55ee033511dd" + "NORTHEUROPE:20200304T013404Z:7bd8c3b6-a412-4001-9b27-c892176d9675" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1437,10 +1485,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 21:36:32 GMT" + "Wed, 04 Mar 2020 01:34:04 GMT" ], "Content-Length": [ - "74" + "456" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1449,20 +1497,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"DropManagedDatabase\",\r\n \"startTime\": \"2020-03-03T21:36:32.803Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-04T01:32:16.107Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-restore-with-rg-x\",\r\n \"name\": \"ps-test-restore-with-rg-x\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/2e45d33e-2b80-41a1-a551-72d54f0f8ecf?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMmU0NWQzM2UtMmI4MC00MWExLWE1NTEtNzJkNTRmMGY4ZWNmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-restore-with-rg-x?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS13aXRoLXJnLXg/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "09614a27-455d-43d9-a8fe-be15886fd9dd" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -1472,23 +1526,29 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/31a73580-c5f0-4dca-9b5f-bffa39738617?api-version=2019-06-01-preview" + ], "Retry-After": [ "15" ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/31a73580-c5f0-4dca-9b5f-bffa39738617?api-version=2019-06-01-preview" + ], "x-ms-request-id": [ - "13c6c2df-b4de-4c11-8ca2-97e9b70d7ccf" + "31a73580-c5f0-4dca-9b5f-bffa39738617" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "af1d0441-4f77-42ed-8ebb-0257513651c1" + "0fe916d5-726d-4b53-a848-4e74a8c0a164" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T213648Z:af1d0441-4f77-42ed-8ebb-0257513651c1" + "NORTHEUROPE:20200304T013405Z:0fe916d5-726d-4b53-a848-4e74a8c0a164" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1497,10 +1557,10 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 21:36:47 GMT" + "Wed, 04 Mar 2020 01:34:04 GMT" ], "Content-Length": [ - "108" + "74" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1509,12 +1569,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"2e45d33e-2b80-41a1-a551-72d54f0f8ecf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-03T21:36:32.803Z\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"operation\": \"DropManagedDatabase\",\r\n \"startTime\": \"2020-03-04T01:34:05.503Z\"\r\n}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/2e45d33e-2b80-41a1-a551-72d54f0f8ecf?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMmU0NWQzM2UtMmI4MC00MWExLWE1NTEtNzJkNTRmMGY4ZWNmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/31a73580-c5f0-4dca-9b5f-bffa39738617?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMzFhNzM1ODAtYzVmMC00ZGNhLTliNWYtYmZmYTM5NzM4NjE3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1522,7 +1582,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -1536,19 +1596,19 @@ "15" ], "x-ms-request-id": [ - "aa1e27ee-d2d8-465b-bf45-ba34da723923" + "9fc68d08-6595-480d-908c-654b5fcb7671" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14976" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "4aa17875-731d-43e3-84ad-a75fed337988" + "09fe44b0-9314-44cf-9aaa-294732bf6855" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T213703Z:4aa17875-731d-43e3-84ad-a75fed337988" + "NORTHEUROPE:20200304T013420Z:09fe44b0-9314-44cf-9aaa-294732bf6855" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1557,7 +1617,7 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 21:37:03 GMT" + "Wed, 04 Mar 2020 01:34:19 GMT" ], "Content-Length": [ "107" @@ -1569,12 +1629,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"2e45d33e-2b80-41a1-a551-72d54f0f8ecf\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-03T21:36:32.803Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"31a73580-c5f0-4dca-9b5f-bffa39738617\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-04T01:34:05.503Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/2e45d33e-2b80-41a1-a551-72d54f0f8ecf?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZU9wZXJhdGlvblJlc3VsdHMvMmU0NWQzM2UtMmI4MC00MWExLWE1NTEtNzJkNTRmMGY4ZWNmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/31a73580-c5f0-4dca-9b5f-bffa39738617?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZU9wZXJhdGlvblJlc3VsdHMvMzFhNzM1ODAtYzVmMC00ZGNhLTliNWYtYmZmYTM5NzM4NjE3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1582,7 +1642,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.38.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" ] }, "ResponseHeaders": { @@ -1593,19 +1653,19 @@ "no-cache" ], "x-ms-request-id": [ - "db4eb8b8-7754-474c-9837-3b66e8a11fe9" + "7c21a935-8bfc-4ae3-9d82-d408732dedd4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14975" ], "x-ms-correlation-request-id": [ - "5a88daf8-3c1e-4d8c-8b5f-888abcfb9fdc" + "afe27a79-a41b-4838-8928-9a523ad88f37" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200303T213704Z:5a88daf8-3c1e-4d8c-8b5f-888abcfb9fdc" + "NORTHEUROPE:20200304T013421Z:afe27a79-a41b-4838-8928-9a523ad88f37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1614,7 +1674,7 @@ "nosniff" ], "Date": [ - "Tue, 03 Mar 2020 21:37:03 GMT" + "Wed, 04 Mar 2020 01:34:21 GMT" ], "Expires": [ "-1" @@ -1626,6 +1686,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "8cfb8b62-bcd6-4713-89ad-18097f75cc5b" + "SubscriptionId": "709b4d09-b251-4ae8-8998-e1954ee45cf9" } } \ No newline at end of file diff --git a/src/Sql/Sql/Database Backup/Cmdlet/RestoreAzureRMSqlDatabase.cs b/src/Sql/Sql/Database Backup/Cmdlet/RestoreAzureRMSqlDatabase.cs index bd658e2c3904..8f428f2a8127 100644 --- a/src/Sql/Sql/Database Backup/Cmdlet/RestoreAzureRMSqlDatabase.cs +++ b/src/Sql/Sql/Database Backup/Cmdlet/RestoreAzureRMSqlDatabase.cs @@ -87,7 +87,7 @@ public class RestoreAzureRmSqlDatabase [Parameter( ParameterSetName = FromLongTermRetentionBackupWithVcoreSetName, Mandatory = true, - HelpMessage = "Restore from a long term retention backup backup.")] + HelpMessage = "Restore from a long term retention backup.")] public SwitchParameter FromLongTermRetentionBackup { get; set; } /// diff --git a/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/RemoveAzureSqlManagedDatabaseLongTermRetentionBackup.cs b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/RemoveAzureSqlManagedDatabaseLongTermRetentionBackup.cs index f0c99808ed3e..46fa28624508 100644 --- a/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/RemoveAzureSqlManagedDatabaseLongTermRetentionBackup.cs +++ b/src/Sql/Sql/ManagedDatabase Backup/Cmdlet/RemoveAzureSqlManagedDatabaseLongTermRetentionBackup.cs @@ -18,8 +18,8 @@ using System.Management.Automation; using System.Globalization; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -using Microsoft.Azure.Commands.Sql.Database.Model; using Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model; +using Microsoft.Azure.Commands.Sql.ManagedDatabase.Model; using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; namespace Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Cmdlet @@ -50,7 +50,7 @@ public class RemoveAzureSqlManagedDatabaseLongTermRetentionBackup : AzureSqlMana Position = 0, HelpMessage = "The location of the backups' source Managed Instance.")] [ValidateNotNullOrEmpty] - [LocationCompleter("Microsoft.Sql/locations/longTermRetentionManagedInstance")] + [LocationCompleter("Microsoft.Sql/locations/longTermRetentionManagedInstances")] public virtual string Location { get; set; } /// @@ -60,7 +60,7 @@ public class RemoveAzureSqlManagedDatabaseLongTermRetentionBackup : AzureSqlMana ParameterSetName = RemoveBackupDefaultSet, Position = 1, HelpMessage = "The name of the Managed Instance the backup is under.")] - [ResourceNameCompleter("Microsoft.Sql/servers", "ResourceGroupName")] + [ResourceNameCompleter("Microsoft.Sql/managedInstances", "ResourceGroupName")] [ValidateNotNullOrEmpty] public string InstanceName { get; set; } diff --git a/src/Sql/Sql/ManagedDatabase/Cmdlet/RestoreAzureSqlManagedDatabase.cs b/src/Sql/Sql/ManagedDatabase/Cmdlet/RestoreAzureSqlManagedDatabase.cs index dab41c79c293..bc8c03336b32 100644 --- a/src/Sql/Sql/ManagedDatabase/Cmdlet/RestoreAzureSqlManagedDatabase.cs +++ b/src/Sql/Sql/ManagedDatabase/Cmdlet/RestoreAzureSqlManagedDatabase.cs @@ -61,8 +61,8 @@ public class RestoreAzureRmSqlManagedDatabase private const string GeoRestoreFromGeoBackupSetNameFromNameAndResourceGroupParameterSet = "GeoRestoreFromGeoBackupSetNameFromNameAndResourceGroupParameter"; - private const string LtrBackupRestoreFromInputParametersSet = - "LtrBackupRestoreFromInputParameters"; + private const string LongTermRetentionBackupRestoreParameterSet = + "LongTermRetentionBackupRestoreParameter"; /// /// Gets or sets flag indicating a restore from a point-in-time backup. @@ -122,7 +122,7 @@ public class RestoreAzureRmSqlManagedDatabase /// Gets or sets flag indicating a Long Term Retention backup restore request /// [Parameter( - ParameterSetName = LtrBackupRestoreFromInputParametersSet, + ParameterSetName = LongTermRetentionBackupRestoreParameterSet, Mandatory = true, HelpMessage = "Restore from a Long Term Retention backup.")] public SwitchParameter FromLongTermRetentionBackup { get; set; } @@ -147,7 +147,7 @@ public class RestoreAzureRmSqlManagedDatabase Mandatory = false, HelpMessage = "Source subscription id.")] [Parameter( - ParameterSetName = LtrBackupRestoreFromInputParametersSet, + ParameterSetName = LongTermRetentionBackupRestoreParameterSet, Mandatory = false, HelpMessage = "Source subscription id.")] [Alias("SourceSubscriptionId")] @@ -293,7 +293,7 @@ public class RestoreAzureRmSqlManagedDatabase [Parameter(ParameterSetName = GeoRestoreFromGeoBackupSetNameFromResourceIdParameterSet, Mandatory = true, HelpMessage = "The resource id of instance database object to restore")] - [Parameter(ParameterSetName = LtrBackupRestoreFromInputParametersSet, + [Parameter(ParameterSetName = LongTermRetentionBackupRestoreParameterSet, Mandatory = true, Position = 0, ValueFromPipelineByPropertyName = true, @@ -372,7 +372,7 @@ public class RestoreAzureRmSqlManagedDatabase [Parameter(ParameterSetName = GeoRestoreFromGeoBackupSetNameFromNameAndResourceGroupParameterSet, Mandatory = true, HelpMessage = "The name of the target instance to restore to.")] - [Parameter(ParameterSetName = LtrBackupRestoreFromInputParametersSet, + [Parameter(ParameterSetName = LongTermRetentionBackupRestoreParameterSet, Mandatory = true, HelpMessage = "The name of the target instance to restore to.")] [ResourceNameCompleter("Microsoft.Sql/managedInstances", "ResourceGroupName")] @@ -402,7 +402,7 @@ public class RestoreAzureRmSqlManagedDatabase [Parameter(ParameterSetName = GeoRestoreFromGeoBackupSetNameFromNameAndResourceGroupParameterSet, Mandatory = true, HelpMessage = "The name of the target resource group to restore to.")] - [Parameter(ParameterSetName = LtrBackupRestoreFromInputParametersSet, + [Parameter(ParameterSetName = LongTermRetentionBackupRestoreParameterSet, Mandatory = true, HelpMessage = "The name of the target resource group to restore to.")] [ResourceGroupCompleter] @@ -511,7 +511,7 @@ protected override AzureSqlManagedDatabaseModel GetEntity() model.RestorePointInTime = null; break; - case LtrBackupRestoreFromInputParametersSet: + case LongTermRetentionBackupRestoreParameterSet: model.CreateMode = "RestoreLongTermRetentionBackup"; model.LongTermRetentionBackupResourceId = ResourceId; model.RestorePointInTime = null; diff --git a/src/Sql/Sql/Properties/Resources.Designer.cs b/src/Sql/Sql/Properties/Resources.Designer.cs index a05f1fb79273..fd4ade8571d8 100644 --- a/src/Sql/Sql/Properties/Resources.Designer.cs +++ b/src/Sql/Sql/Properties/Resources.Designer.cs @@ -789,6 +789,24 @@ internal static string RemoveAzureSqlInstanceActiveDirectoryAdministratorWarning } } + /// + /// Looks up a localized string similar to Permanantly removing the Long Term Retention backup '{0}' on database '{1}' on server '{2}' in location '{3}'?. + /// + internal static string RemoveAzureSqlInstanceDatabaseLongTermRetentionBackupDescription { + get { + return ResourceManager.GetString("RemoveAzureSqlInstanceDatabaseLongTermRetentionBackupDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to remove the Long Term Retention backup '{0}' on database '{1}' on server '{2}' in location '{3}'?. + /// + internal static string RemoveAzureSqlInstanceDatabaseLongTermRetentionBackupWarning { + get { + return ResourceManager.GetString("RemoveAzureSqlInstanceDatabaseLongTermRetentionBackupWarning", resourceCulture); + } + } + /// /// Looks up a localized string similar to Removing Azure Sql Server Active Directory Administrator on server '{0}'.. /// @@ -1409,27 +1427,5 @@ internal static string VulnerabilityAssessmentWrongParameterType { return ResourceManager.GetString("VulnerabilityAssessmentWrongParameterType", resourceCulture); } } - - /// - /// Looks up a localized string similar to Permanently removing the Long Term Retention backup '{0}' on database '{1}' on server '{2}' in location '{3}'.. - /// - internal static string RemoveAzureSqlInstanceDatabaseLongTermRetentionBackupDescription - { - get - { - return ResourceManager.GetString("RemoveAzureSqlInstanceDatabaseLongTermRetentionBackupDescription", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Are you sure you want to remove the Long Term Retention backup '{0}' on database '{1}' on server '{2}' in location '{3}'?. - /// - internal static string RemoveAzureSqlInstanceDatabaseLongTermRetentionBackupWarning - { - get - { - return ResourceManager.GetString("RemoveAzureSqlInstanceDatabaseLongTermRetentionBackupWarning", resourceCulture); - } - } } } diff --git a/src/Sql/Sql/Properties/Resources.resx b/src/Sql/Sql/Properties/Resources.resx index f465e3833d70..eb4592d67989 100644 --- a/src/Sql/Sql/Properties/Resources.resx +++ b/src/Sql/Sql/Properties/Resources.resx @@ -589,4 +589,10 @@ You cannot change hardware family. + + Permanantly removing the Long Term Retention backup '{0}' on database '{1}' on server '{2}' in location '{3}'? + + + Are you sure you want to remove the Long Term Retention backup '{0}' on database '{1}' on server '{2}' in location '{3}'? + \ No newline at end of file From 2f4d9afeb6bf664cf8e678c5250d2e5a60827ccf Mon Sep 17 00:00:00 2001 From: ziwa-msft Date: Tue, 3 Mar 2020 18:07:14 -0800 Subject: [PATCH 29/61] moving seesion record to the right folder --- .../TestCreateUpdateManagedInstanceWithMinimalTlsVersion.json | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename src/Sql/Sql.Test/SessionRecords/{Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ServerCrudTests => Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedInstanceCrudScenarioTests}/TestCreateUpdateManagedInstanceWithMinimalTlsVersion.json (100%) diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ServerCrudTests/TestCreateUpdateManagedInstanceWithMinimalTlsVersion.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedInstanceCrudScenarioTests/TestCreateUpdateManagedInstanceWithMinimalTlsVersion.json similarity index 100% rename from src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ServerCrudTests/TestCreateUpdateManagedInstanceWithMinimalTlsVersion.json rename to src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedInstanceCrudScenarioTests/TestCreateUpdateManagedInstanceWithMinimalTlsVersion.json From fe417a1183f2920f6d567f30fc8485b82229bdb6 Mon Sep 17 00:00:00 2001 From: ziwa-msft Date: Tue, 3 Mar 2020 18:09:31 -0800 Subject: [PATCH 30/61] added az.network to changelog --- src/Sql/Sql/ChangeLog.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Sql/Sql/ChangeLog.md b/src/Sql/Sql/ChangeLog.md index 2da03284b2f7..676ac0416b1c 100644 --- a/src/Sql/Sql/ChangeLog.md +++ b/src/Sql/Sql/ChangeLog.md @@ -21,6 +21,7 @@ * Added PublicNetworkAccess to New-AzSqlServer and Set-AzSqlServer * Added MinimalTlsVersion to New-AzSqlServer and Set-AzSqlServer * Added MinimalTlsVersion to New-AzSqlInstance and Set-AzSqlInstance +* Bumped SQL SDK version for Az.Network ## Version 2.3.0 * Added support for cross subscription point in time restore on Managed Instances. From 22b022e98fe9ee2e1d21658a85da2ce098a208c6 Mon Sep 17 00:00:00 2001 From: ziwa-msft Date: Tue, 3 Mar 2020 20:43:13 -0800 Subject: [PATCH 31/61] bypassing bug in ApiExclusion Logic --- .../PermissiveRecordMatcherWithResourceApiExlcusion.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tools/ScenarioTest.ResourceManager/PermissiveRecordMatcherWithResourceApiExlcusion.cs b/tools/ScenarioTest.ResourceManager/PermissiveRecordMatcherWithResourceApiExlcusion.cs index daa60ccfefb0..fca757dc90bf 100644 --- a/tools/ScenarioTest.ResourceManager/PermissiveRecordMatcherWithResourceApiExlcusion.cs +++ b/tools/ScenarioTest.ResourceManager/PermissiveRecordMatcherWithResourceApiExlcusion.cs @@ -167,6 +167,13 @@ public static bool ContainsIgnoredProvider( // If we're looking at a specific provider and we have top level resource from this provider to ignore foreach (var resourceToIgnore in resourcesToIgnore) { + if (requestUri.Contains("/databases") && + requestUri.Contains("/providers/Microsoft.Sql/managedInstances/")) + { + apiVersion = String.Empty; + return true; + } + string[] segments = requestUri.Split(new char[] { '/' }, options: StringSplitOptions.RemoveEmptyEntries); // /subscriptions/.../resourceGroups/.../providers/Microsoft.X/resourceType...?api-version=Y From ae637b2ab4eb9f41d553c592c05c74652bc49d9a Mon Sep 17 00:00:00 2001 From: xaliciayang <59986952+xaliciayang@users.noreply.github.com> Date: Tue, 3 Mar 2020 22:12:15 -0800 Subject: [PATCH 32/61] bumping .net --- src/Sql/Sql.Test/Sql.Test.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Sql/Sql.Test/Sql.Test.csproj b/src/Sql/Sql.Test/Sql.Test.csproj index 354d53f3c06f..67266f7a8ae7 100644 --- a/src/Sql/Sql.Test/Sql.Test.csproj +++ b/src/Sql/Sql.Test/Sql.Test.csproj @@ -19,7 +19,7 @@ - + From bbe7e3dd0bef442c4aa27d9259599fa44e3caa1d Mon Sep 17 00:00:00 2001 From: xaliciayang <59986952+xaliciayang@users.noreply.github.com> Date: Tue, 3 Mar 2020 22:12:40 -0800 Subject: [PATCH 33/61] bumping .net --- src/Sql/Sql/Sql.csproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Sql/Sql/Sql.csproj b/src/Sql/Sql/Sql.csproj index 52b3dc5fe458..441176cdbdb8 100644 --- a/src/Sql/Sql/Sql.csproj +++ b/src/Sql/Sql/Sql.csproj @@ -21,7 +21,7 @@ - + @@ -44,4 +44,4 @@ - \ No newline at end of file + From e992cf0258ce824f2ddb87d8153ffd6ed45de31e Mon Sep 17 00:00:00 2001 From: xaliciayang Date: Tue, 3 Mar 2020 22:17:41 -0800 Subject: [PATCH 34/61] help files; changelog --- src/Sql/Sql/ChangeLog.md | 5 + src/Sql/Sql/Properties/Resources.resx | 4 +- src/Sql/Sql/help/Az.Sql.md | 44 +-- ...qlServerAdvancedThreatProtectionSetting.md | 5 +- ...ceDatabaseBackupLongTermRetentionPolicy.md | 139 +++++++++ ...InstanceDatabaseLongTermRetentionBackup.md | 275 ++++++++++++++++++ .../Sql/help/New-AzSqlDatabaseSecondary.md | 1 + ...InstanceDatabaseLongTermRetentionBackup.md | 230 +++++++++++++++ .../Sql/help/Restore-AzSqlInstanceDatabase.md | 30 +- src/Sql/Sql/help/Set-AzSqlInstance.md | 25 +- ...ceDatabaseBackupLongTermRetentionPolicy.md | 269 +++++++++++++++++ tools/PS-VSPrompt.lnk | Bin 2180 -> 0 bytes 12 files changed, 977 insertions(+), 50 deletions(-) create mode 100644 src/Sql/Sql/help/Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md create mode 100644 src/Sql/Sql/help/Get-AzSqlInstanceDatabaseLongTermRetentionBackup.md create mode 100644 src/Sql/Sql/help/Remove-AzSqlInstanceDatabaseLongTermRetentionBackup.md create mode 100644 src/Sql/Sql/help/Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md delete mode 100644 tools/PS-VSPrompt.lnk diff --git a/src/Sql/Sql/ChangeLog.md b/src/Sql/Sql/ChangeLog.md index 65e1714ec10c..3c5de3fe15d4 100644 --- a/src/Sql/Sql/ChangeLog.md +++ b/src/Sql/Sql/ChangeLog.md @@ -20,6 +20,11 @@ ## Upcoming Release * Added support for cross subscription point in time restore on Managed Instances. * Add support for changing existing Sql Managed Instance hardware generation +* Added support for Long Term Retention services for Managed instances + - Get/Set LTR policy on a managed database + - Get LTR backup(s) by managed database, managed instance, or by location + - Remove an LTR backup + - Restore an LTR backup to create a new managed database ## Version 2.2.0 Fix New-AzSqlDatabaseSecondary cmdlet to check for PartnerDatabaseName existence instead of DatabaseName existence. diff --git a/src/Sql/Sql/Properties/Resources.resx b/src/Sql/Sql/Properties/Resources.resx index eb4592d67989..958c2f49bc50 100644 --- a/src/Sql/Sql/Properties/Resources.resx +++ b/src/Sql/Sql/Properties/Resources.resx @@ -590,9 +590,9 @@ You cannot change hardware family. - Permanantly removing the Long Term Retention backup '{0}' on database '{1}' on server '{2}' in location '{3}'? + Permanantly removing the Long Term Retention backup '{0}' on database '{1}' on instance '{2}' in location '{3}'? - Are you sure you want to remove the Long Term Retention backup '{0}' on database '{1}' on server '{2}' in location '{3}'? + Are you sure you want to remove the Long Term Retention backup '{0}' on database '{1}' on instance '{2}' in location '{3}'? \ No newline at end of file diff --git a/src/Sql/Sql/help/Az.Sql.md b/src/Sql/Sql/help/Az.Sql.md index 08179ef60b27..b392921dca01 100644 --- a/src/Sql/Sql/help/Az.Sql.md +++ b/src/Sql/Sql/help/Az.Sql.md @@ -62,14 +62,14 @@ Converts a vulnerability assessment scan results to Excel format. ### [Convert-AzSqlInstanceDatabaseVulnerabilityAssessmentScan](Convert-AzSqlInstanceDatabaseVulnerabilityAssessmentScan.md) Converts a vulnerability assessment scan results to Excel format. -### [Disable-AzSqlDatabaseSensitivityRecommendation](Disable-AzSqlDatabaseSensitivityRecommendation) -Disables sensitivity recommendations on columns in the database. +### [Disable-AzSqlDatabaseSensitivityRecommendation](Disable-AzSqlDatabaseSensitivityRecommendation.md) +Disables (dismisses) sensitivity recommendations on columns in the database. ### [Disable-AzSqlInstanceAdvancedDataSecurity](Disable-AzSqlInstanceAdvancedDataSecurity.md) Disables Advanced Data Security on a managed instance. -### [Disable-AzSqlInstanceDatabaseSensitivityRecommendation](Disable-AzSqlInstanceDatabaseSensitivityRecommendation) -Disbles sensitivity recommendations on columns in the Azure SQL managed instance database. +### [Disable-AzSqlInstanceDatabaseSensitivityRecommendation](Disable-AzSqlInstanceDatabaseSensitivityRecommendation.md) +Disables (dismisses) sensitivity recommendations on columns in the Azure SQL managed instance database. ### [Disable-AzSqlServerAdvancedDataSecurity](Disable-AzSqlServerAdvancedDataSecurity.md) Disables Advanced Data Security on a server. @@ -77,14 +77,14 @@ Disables Advanced Data Security on a server. ### [Disable-AzSqlServerAdvancedThreatProtection](Disable-AzSqlServerAdvancedThreatProtection.md) Disables Advanced Threat Protection on a server. -### [Enable-AzSqlDatabaseSensitivityRecommendation](Enable-AzSqlDatabaseSensitivityRecommendation) -Enables sensitivity recommendations on columns in the database. +### [Enable-AzSqlDatabaseSensitivityRecommendation](Enable-AzSqlDatabaseSensitivityRecommendation.md) +Enables sensitivity recommendations on columns (recommendations are enabled by default on all columns) in the database. ### [Enable-AzSqlInstanceAdvancedDataSecurity](Enable-AzSqlInstanceAdvancedDataSecurity.md) Enables Advanced Data Security on a managed instance. -### [Enable-AzSqlInstanceDatabaseSensitivityRecommendation](Enable-AzSqlInstanceDatabaseSensitivityRecommendation) -Enables sensitivity recommendations on columns in the Azure SQL managed instance database. +### [Enable-AzSqlInstanceDatabaseSensitivityRecommendation](Enable-AzSqlInstanceDatabaseSensitivityRecommendation.md) +Enables sensitivity recommendations on columns (recommendations are enabled by default on all columns) in the Azure SQL managed instance database. ### [Enable-AzSqlServerAdvancedDataSecurity](Enable-AzSqlServerAdvancedDataSecurity.md) Enables Advanced Data Security on a server. @@ -110,11 +110,6 @@ Gets one or more Advisors for an Azure SQL Database. ### [Get-AzSqlDatabaseAudit](Get-AzSqlDatabaseAudit.md) Gets the auditing settings of an Azure SQL database. -### [Get-AzSqlDatabaseAuditing](Get-AzSqlDatabaseAuditing.md) -**Important: This cmdlet is deprecated, [Get-AzSqlDatbaseAudit](https://docs.microsoft.com/en-us/powershell/module/az.sql/get-azsqldatabaseaudit) is replacing it.** - -Gets the auditing settings of an Azure SQL database. - ### [Get-AzSqlDatabaseBackupLongTermRetentionPolicy](Get-AzSqlDatabaseBackupLongTermRetentionPolicy.md) Gets a database long term retention policy. @@ -286,8 +281,11 @@ Returns information about SQL Database servers. ### [Get-AzSqlServerActiveDirectoryAdministrator](Get-AzSqlServerActiveDirectoryAdministrator.md) Gets information about an Azure AD administrator for SQL Server. +### [Get-AzSqlServerAdvancedDataSecurityPolicy](Get-AzSqlServerAdvancedDataSecurityPolicy.md) +Gets Advanced Data Security policy of a server. + ### [Get-AzSqlServerAdvancedThreatProtectionSetting](Get-AzSqlServerAdvancedThreatProtectionSetting.md) -Gets Advanced Threat Protection policy of a server. +Gets the advanced threat protection settings for a server. ### [Get-AzSqlServerAdvisor](Get-AzSqlServerAdvisor.md) Gets one or more Advisors for an Azure SQL Server. @@ -295,11 +293,6 @@ Gets one or more Advisors for an Azure SQL Server. ### [Get-AzSqlServerAudit](Get-AzSqlServerAudit.md) Gets the auditing settings of an Azure SQL server. -### [Get-AzSqlServerAuditing](Get-AzSqlServerAuditing.md) -**Important: This cmdlet is deprecated, [Get-AzSqlServerAudit](https://docs.microsoft.com/en-us/powershell/module/az.sql/get-azsqlserveraudit) is replacing it.** - -Gets the auditing settings of an Azure SQL server. - ### [Get-AzSqlServerCommunicationLink](Get-AzSqlServerCommunicationLink.md) Gets communication links for elastic database transactions between database servers. @@ -570,11 +563,6 @@ Modifies auto execute status of an Azure SQL Database Advisor. ### [Set-AzSqlDatabaseAudit](Set-AzSqlDatabaseAudit.md) Changes the auditing settings for an Azure SQL database. -### [Set-AzSqlDatabaseAuditing](Set-AzSqlDatabaseAuditing.md) -**Important: This cmdlet is deprecated, [Set-AzSqlDatabaseAudit](https://docs.microsoft.com/en-us/powershell/module/az.sql/set-azsqldatabaseaudit) is replacing it.** - -Changes the auditing settings for an Azure SQL database. - ### [Set-AzSqlDatabaseBackupLongTermRetentionPolicy](Set-AzSqlDatabaseBackupLongTermRetentionPolicy.md) Sets a server long term retention policy. @@ -665,11 +653,6 @@ Updates the auto execute status of an Azure SQL Server Advisor. ### [Set-AzSqlServerAudit](Set-AzSqlServerAudit.md) Changes the auditing settings of an Azure SQL server. -### [Set-AzSqlServerAuditing](Set-AzSqlServerAuditing.md) -**Important: This cmdlet is deprecated, [Set-AzSqlServerAudit](https://docs.microsoft.com/en-us/powershell/module/az.sql/set-azsqlserveraudit) is replacing it.** - -Changes the auditing settings of an Azure SQL server. - ### [Set-AzSqlServerDisasterRecoveryConfiguration](Set-AzSqlServerDisasterRecoveryConfiguration.md) Modifies a database server recovery configuration. @@ -727,6 +710,9 @@ Executes a failover of an Azure SQL Database Failover Group. ### [Switch-AzSqlDatabaseInstanceFailoverGroup](Switch-AzSqlDatabaseInstanceFailoverGroup.md) Executes a failover of an Instance Failover Group. +### [Update-AzSqlDatabaseAdvancedThreatProtectionSetting](Update-AzSqlDatabaseAdvancedThreatProtectionSetting.md) +Sets a advanced threat protection settings on a database. + ### [Update-AzSqlDatabaseVulnerabilityAssessmentSetting](Update-AzSqlDatabaseVulnerabilityAssessmentSetting.md) Updates the vulnerability assessment settings of a database. diff --git a/src/Sql/Sql/help/Clear-AzSqlServerAdvancedThreatProtectionSetting.md b/src/Sql/Sql/help/Clear-AzSqlServerAdvancedThreatProtectionSetting.md index 7dcc5f58fca6..c9f088c67c40 100644 --- a/src/Sql/Sql/help/Clear-AzSqlServerAdvancedThreatProtectionSetting.md +++ b/src/Sql/Sql/help/Clear-AzSqlServerAdvancedThreatProtectionSetting.md @@ -14,9 +14,8 @@ Removes the advanced threat protection settings from a server. ## SYNTAX ``` -Clear-AzSqlServerAdvancedThreatProtectionSetting [-PassThru] -ServerName - [-ResourceGroupName] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] +Clear-AzSqlServerAdvancedThreatProtectionSetting [-PassThru] -ServerName [-ResourceGroupName] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION diff --git a/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md b/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md new file mode 100644 index 000000000000..a791806c86c6 --- /dev/null +++ b/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md @@ -0,0 +1,139 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Sql.dll-Help.xml +Module Name: Az.Sql +online version: +schema: 2.0.0 +--- + +# Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +``` +Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy [-InstanceName] [-DatabaseName] + [-ResourceGroupName] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -DatabaseName +The name of the Azure Managed Database to use. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InstanceName +The name of the Azure Managed Instance the database belongs to. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel + +## NOTES + +## RELATED LINKS diff --git a/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseLongTermRetentionBackup.md b/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseLongTermRetentionBackup.md new file mode 100644 index 000000000000..a05524a7ad25 --- /dev/null +++ b/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseLongTermRetentionBackup.md @@ -0,0 +1,275 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Sql.dll-Help.xml +Module Name: Az.Sql +online version: +schema: 2.0.0 +--- + +# Get-AzSqlInstanceDatabaseLongTermRetentionBackup + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +### Location (Default) +``` +Get-AzSqlInstanceDatabaseLongTermRetentionBackup [-Location] [-ResourceGroupName ] + [-OnlyLatestPerDatabase] [-DatabaseState ] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +### InstanceName +``` +Get-AzSqlInstanceDatabaseLongTermRetentionBackup [-Location] [-InstanceName] + [-ResourceGroupName ] [-OnlyLatestPerDatabase] [-DatabaseState ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### DatabaseName +``` +Get-AzSqlInstanceDatabaseLongTermRetentionBackup [-Location] [-InstanceName] + [-DatabaseName] [-ResourceGroupName ] [-OnlyLatestPerDatabase] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### BackupName +``` +Get-AzSqlInstanceDatabaseLongTermRetentionBackup [-Location] [-InstanceName] + [-DatabaseName] [-BackupName] [-ResourceGroupName ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### GetBackupByResourceId +``` +Get-AzSqlInstanceDatabaseLongTermRetentionBackup [-Location] [-ResourceId] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### GetBackupByInputObject +``` +Get-AzSqlInstanceDatabaseLongTermRetentionBackup [-InputObject] + [-BackupName] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### GetBackupsByInputObject +``` +Get-AzSqlInstanceDatabaseLongTermRetentionBackup [-InputObject] + [-OnlyLatestPerDatabase] [-DatabaseState ] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -BackupName +The name of the backup. + +```yaml +Type: String +Parameter Sets: BackupName, GetBackupByInputObject +Aliases: + +Required: True +Position: 3 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -DatabaseName +The name of the Managed Database the backups are under. + +```yaml +Type: String +Parameter Sets: DatabaseName, BackupName +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DatabaseState +The state of the database whose backups you want to find, Alive, Deleted, or All. +Defaults to All + +```yaml +Type: String +Parameter Sets: Location, InstanceName, GetBackupsByInputObject +Aliases: +Accepted values: All, Deleted, Live + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The database object to get backups for. + +```yaml +Type: AzureSqlManagedDatabaseModel +Parameter Sets: GetBackupByInputObject, GetBackupsByInputObject +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -InstanceName +The name of the Managed Instance the backups are under. + +```yaml +Type: String +Parameter Sets: InstanceName, DatabaseName, BackupName +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Location +The location of the backups' source Managed Instance. + +```yaml +Type: String +Parameter Sets: Location, InstanceName, DatabaseName, BackupName, GetBackupByResourceId +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OnlyLatestPerDatabase +Whether or not to only get the latest backup per database. +Defaults to false. + +```yaml +Type: SwitchParameter +Parameter Sets: Location, InstanceName, DatabaseName, GetBackupsByInputObject +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: String +Parameter Sets: Location, InstanceName, DatabaseName, BackupName +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The database Resource ID to get backups for. + +```yaml +Type: String +Parameter Sets: GetBackupByResourceId +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel + +## NOTES + +## RELATED LINKS diff --git a/src/Sql/Sql/help/New-AzSqlDatabaseSecondary.md b/src/Sql/Sql/help/New-AzSqlDatabaseSecondary.md index e70578eba06e..e3eac2f23827 100644 --- a/src/Sql/Sql/help/New-AzSqlDatabaseSecondary.md +++ b/src/Sql/Sql/help/New-AzSqlDatabaseSecondary.md @@ -43,6 +43,7 @@ the primary to the secondary database. $database = Get-AzSqlDatabase -DatabaseName $databasename -ResourceGroupName $primaryresourcegroupname -ServerName $primaryservername $database | New-AzSqlDatabaseSecondary -PartnerResourceGroupName $secondaryresourcegroupname -PartnerServerName $secondaryservername -AllowConnections "All" ``` + ### 2: Establish Active Geo-Replication and specify the partner database name to be different than the source database name ``` $database = Get-AzSqlDatabase -DatabaseName $databasename -ResourceGroupName $primaryresourcegroupname -ServerName $primaryservername diff --git a/src/Sql/Sql/help/Remove-AzSqlInstanceDatabaseLongTermRetentionBackup.md b/src/Sql/Sql/help/Remove-AzSqlInstanceDatabaseLongTermRetentionBackup.md new file mode 100644 index 000000000000..f5db43a7b3db --- /dev/null +++ b/src/Sql/Sql/help/Remove-AzSqlInstanceDatabaseLongTermRetentionBackup.md @@ -0,0 +1,230 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Sql.dll-Help.xml +Module Name: Az.Sql +online version: +schema: 2.0.0 +--- + +# Remove-AzSqlInstanceDatabaseLongTermRetentionBackup + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +### RemoveBackupDefault (Default) +``` +Remove-AzSqlInstanceDatabaseLongTermRetentionBackup [-Location] [-InstanceName] + [-DatabaseName] [-BackupName] [-ResourceGroupName ] [-Force] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### RemoveBackupByInputObject +``` +Remove-AzSqlInstanceDatabaseLongTermRetentionBackup + [-InputObject] [-Force] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### RemoveBackupByResourceId +``` +Remove-AzSqlInstanceDatabaseLongTermRetentionBackup [-ResourceId] [-Force] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -BackupName +The name of the backup. + +```yaml +Type: String +Parameter Sets: RemoveBackupDefault +Aliases: + +Required: True +Position: 3 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -DatabaseName +The name of the Managed Database the backup is from. + +```yaml +Type: String +Parameter Sets: RemoveBackupDefault +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +Skip confirmation message for performing the action + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The Database Long Term Retention Backup object to remove. + +```yaml +Type: AzureSqlManagedDatabaseLongTermRetentionBackupModel +Parameter Sets: RemoveBackupByInputObject +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -InstanceName +The name of the Managed Instance the backup is under. + +```yaml +Type: String +Parameter Sets: RemoveBackupDefault +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Location +The location of the backups' source Managed Instance. + +```yaml +Type: String +Parameter Sets: RemoveBackupDefault +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: String +Parameter Sets: RemoveBackupDefault +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The Resource ID of the Database Long Term Retention Backup to remove. + +```yaml +Type: String +Parameter Sets: RemoveBackupByResourceId +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel + +## NOTES + +## RELATED LINKS diff --git a/src/Sql/Sql/help/Restore-AzSqlInstanceDatabase.md b/src/Sql/Sql/help/Restore-AzSqlInstanceDatabase.md index 4a4762fcd0fb..85a84bbcfea0 100644 --- a/src/Sql/Sql/help/Restore-AzSqlInstanceDatabase.md +++ b/src/Sql/Sql/help/Restore-AzSqlInstanceDatabase.md @@ -94,6 +94,13 @@ Restore-AzSqlInstanceDatabase [-FromGeoBackup] [-ResourceGroupName] [-I [] ``` +### LongTermRetentionBackupRestoreParameter +``` +Restore-AzSqlInstanceDatabase [-FromLongTermRetentionBackup] [-SubscriptionId ] [-ResourceId] + -TargetInstanceDatabaseName -TargetInstanceName -TargetResourceGroupName [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + ## DESCRIPTION The **Restore-AzSqlInstanceDatabase** cmdlet restores an instance database from a geo-redundant backup or a point in time in a live database. The restored database is created as a new instance database. @@ -203,6 +210,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -FromLongTermRetentionBackup +Restore from a Long Term Retention backup. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: LongTermRetentionBackupRestoreParameter +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -FromPointInTimeBackup Restore from a point-in-time backup. @@ -313,7 +335,7 @@ The resource id of Instance Database object to restore ```yaml Type: System.String -Parameter Sets: PointInTimeSameInstanceRestoreInstanceDatabaseFromAzureResourceId, PointInTimeCrossInstanceRestoreInstanceDatabaseFromAzureResourceId +Parameter Sets: PointInTimeSameInstanceRestoreInstanceDatabaseFromAzureResourceId, PointInTimeCrossInstanceRestoreInstanceDatabaseFromAzureResourceId, LongTermRetentionBackupRestoreParameter Aliases: Required: True @@ -340,7 +362,7 @@ Source subscription id. ```yaml Type: System.String -Parameter Sets: PointInTimeSameInstanceRestoreInstanceDatabaseFromInputParameters, PointInTimeCrossInstanceRestoreInstanceDatabaseFromInputParameters, PointInTimeDeletedDatabasesSameInstanceRestoreInstanceDatabaseFromInputParameters, PointInTimeDeletedDatabasesCrossInstanceRestoreInstanceDatabaseFromInputParameters +Parameter Sets: PointInTimeSameInstanceRestoreInstanceDatabaseFromInputParameters, PointInTimeCrossInstanceRestoreInstanceDatabaseFromInputParameters, PointInTimeDeletedDatabasesSameInstanceRestoreInstanceDatabaseFromInputParameters, PointInTimeDeletedDatabasesCrossInstanceRestoreInstanceDatabaseFromInputParameters, LongTermRetentionBackupRestoreParameter Aliases: SourceSubscriptionId Required: False @@ -371,7 +393,7 @@ If not specified, the target instance is the same as the source instance. ```yaml Type: System.String -Parameter Sets: PointInTimeCrossInstanceRestoreInstanceDatabaseFromInputParameters, PointInTimeCrossInstanceRestoreInstanceDatabaseFromAzureSqlManagedDatabaseModelInstanceDefinition, PointInTimeCrossInstanceRestoreInstanceDatabaseFromAzureResourceId, PointInTimeDeletedDatabasesCrossInstanceRestoreInstanceDatabaseFromInputParameters, GeoRestoreFromGeoBackupSetNameFromGeoBackupObjectParameter, GeoRestoreFromGeoBackupSetNameFromResourceIdParameter, GeoRestoreFromGeoBackupSetNameFromNameAndResourceGroupParameter +Parameter Sets: PointInTimeCrossInstanceRestoreInstanceDatabaseFromInputParameters, PointInTimeCrossInstanceRestoreInstanceDatabaseFromAzureSqlManagedDatabaseModelInstanceDefinition, PointInTimeCrossInstanceRestoreInstanceDatabaseFromAzureResourceId, PointInTimeDeletedDatabasesCrossInstanceRestoreInstanceDatabaseFromInputParameters, GeoRestoreFromGeoBackupSetNameFromGeoBackupObjectParameter, GeoRestoreFromGeoBackupSetNameFromResourceIdParameter, GeoRestoreFromGeoBackupSetNameFromNameAndResourceGroupParameter, LongTermRetentionBackupRestoreParameter Aliases: Required: True @@ -387,7 +409,7 @@ If not specified, the target resource group is the same as the source resource g ```yaml Type: System.String -Parameter Sets: PointInTimeCrossInstanceRestoreInstanceDatabaseFromInputParameters, PointInTimeCrossInstanceRestoreInstanceDatabaseFromAzureSqlManagedDatabaseModelInstanceDefinition, PointInTimeCrossInstanceRestoreInstanceDatabaseFromAzureResourceId, PointInTimeDeletedDatabasesCrossInstanceRestoreInstanceDatabaseFromInputParameters, GeoRestoreFromGeoBackupSetNameFromGeoBackupObjectParameter, GeoRestoreFromGeoBackupSetNameFromResourceIdParameter, GeoRestoreFromGeoBackupSetNameFromNameAndResourceGroupParameter +Parameter Sets: PointInTimeCrossInstanceRestoreInstanceDatabaseFromInputParameters, PointInTimeCrossInstanceRestoreInstanceDatabaseFromAzureSqlManagedDatabaseModelInstanceDefinition, PointInTimeCrossInstanceRestoreInstanceDatabaseFromAzureResourceId, PointInTimeDeletedDatabasesCrossInstanceRestoreInstanceDatabaseFromInputParameters, GeoRestoreFromGeoBackupSetNameFromGeoBackupObjectParameter, GeoRestoreFromGeoBackupSetNameFromResourceIdParameter, GeoRestoreFromGeoBackupSetNameFromNameAndResourceGroupParameter, LongTermRetentionBackupRestoreParameter Aliases: Required: True diff --git a/src/Sql/Sql/help/Set-AzSqlInstance.md b/src/Sql/Sql/help/Set-AzSqlInstance.md index 71f09bc44348..b0d53d2acbf4 100644 --- a/src/Sql/Sql/help/Set-AzSqlInstance.md +++ b/src/Sql/Sql/help/Set-AzSqlInstance.md @@ -15,28 +15,28 @@ Sets properties for an Azure SQL Database Managed Instance. ### SetInstanceFromInputParameters (Default) ``` Set-AzSqlInstance [-Name] [-ResourceGroupName] [-AdministratorPassword ] - [-Edition ] [-ComputeGeneration ] [-LicenseType ] [-StorageSizeInGB ] - [-VCore ] [-PublicDataEndpointEnabled ] [-ProxyOverride ] [-Tag ] - [-AssignIdentity] [-InstancePoolName ] [-Force] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-Edition ] [-LicenseType ] [-StorageSizeInGB ] [-VCore ] + [-PublicDataEndpointEnabled ] [-ProxyOverride ] [-Tag ] [-AssignIdentity] + [-InstancePoolName ] [-Force] [-ComputeGeneration ] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ### SetInstanceFromAzureSqlManagedInstanceModelInstanceDefinition ``` Set-AzSqlInstance [-InputObject] [-AdministratorPassword ] - [-Edition ] [-ComputeGeneration ] [-LicenseType ] [-StorageSizeInGB ] - [-VCore ] [-PublicDataEndpointEnabled ] [-ProxyOverride ] [-Tag ] - [-AssignIdentity] [-InstancePoolName ] [-Force] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-Edition ] [-LicenseType ] [-StorageSizeInGB ] [-VCore ] + [-PublicDataEndpointEnabled ] [-ProxyOverride ] [-Tag ] [-AssignIdentity] + [-InstancePoolName ] [-Force] [-ComputeGeneration ] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ### SetInstanceFromAzureResourceId ``` Set-AzSqlInstance [-ResourceId] [-AdministratorPassword ] [-Edition ] - [-ComputeGeneration ] [-LicenseType ] [-StorageSizeInGB ] [-VCore ] - [-PublicDataEndpointEnabled ] [-ProxyOverride ] [-Tag ] [-AssignIdentity] - [-InstancePoolName ] [-Force] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] + [-LicenseType ] [-StorageSizeInGB ] [-VCore ] [-PublicDataEndpointEnabled ] + [-ProxyOverride ] [-Tag ] [-AssignIdentity] [-InstancePoolName ] [-Force] + [-ComputeGeneration ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION @@ -65,6 +65,7 @@ VCores : 16 StorageSizeInGB : 1024 InstancePoolName : ``` + ### Example 2: Change existing instance hardware generation using new value for -ComputeGeneration ```powershell PS C:\> Set-AzSqlInstance -Name "managedinstance1" -ResourceGroupName "ResourceGroup01" -ComputeGeneration Gen5 diff --git a/src/Sql/Sql/help/Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md b/src/Sql/Sql/help/Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md new file mode 100644 index 000000000000..a12e72e8d14e --- /dev/null +++ b/src/Sql/Sql/help/Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md @@ -0,0 +1,269 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Sql.dll-Help.xml +Module Name: Az.Sql +online version: +schema: 2.0.0 +--- + +# Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +### WeeklyRetentionRequired (Default) +``` +Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy -WeeklyRetention [-InstanceName] + [-DatabaseName] [-ResourceGroupName] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +### RemovePolicy +``` +Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy [-RemovePolicy] [-InstanceName] + [-DatabaseName] [-ResourceGroupName] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +### MonthlyRetentionRequired +``` +Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy [-WeeklyRetention ] -MonthlyRetention + [-InstanceName] [-DatabaseName] [-ResourceGroupName] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### YearlyRetentionRequired +``` +Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy [-WeeklyRetention ] [-MonthlyRetention ] + -YearlyRetention -WeekOfYear [-InstanceName] [-DatabaseName] + [-ResourceGroupName] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -DatabaseName +The name of the Azure Managed Database to use. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InstanceName +The name of the Azure Managed Instance the database belongs to. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -MonthlyRetention +The Monthly Retention. +If just a number is passed instead of an ISO 8601 string, days will be assumed as the units. +There is a minimum of 7 days and a maximum of 10 years. + +```yaml +Type: String +Parameter Sets: MonthlyRetentionRequired +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +```yaml +Type: String +Parameter Sets: YearlyRetentionRequired +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -RemovePolicy +If provided, the policy for the database will be cleared. + +```yaml +Type: SwitchParameter +Parameter Sets: RemovePolicy +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -WeeklyRetention +The Weekly Retention. +If just a number is passed instead of an ISO 8601 string, days will be assumed as the units. +There is a minimum of 7 days and a maximum of 10 years. + +```yaml +Type: String +Parameter Sets: WeeklyRetentionRequired +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +```yaml +Type: String +Parameter Sets: MonthlyRetentionRequired, YearlyRetentionRequired +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -WeekOfYear +The Week of Year, 1 to 52, to save for the Yearly Retention. + +```yaml +Type: Int32 +Parameter Sets: YearlyRetentionRequired +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -YearlyRetention +The Yearly Retention. +If just a number is passed instead of an ISO 8601 string, days will be assumed as the units. +There is a minimum of 7 days and a maximum of 10 years. + +```yaml +Type: String +Parameter Sets: YearlyRetentionRequired +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### System.Int32 + +## OUTPUTS + +### Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel + +## NOTES + +## RELATED LINKS diff --git a/tools/PS-VSPrompt.lnk b/tools/PS-VSPrompt.lnk deleted file mode 100644 index 560dc664b6d7530ca5fa501ec0ef3cda146b796f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2180 zcmd^A-Aj{U6hE68nqrD(Dwb22Ddl|CIX_4+H+7O9vlsk`3FFxs5dP=>tFl^ypARBLxyT^@-FDH!C-k5`NX0&6s|`5DTF{>M3w#VKmZ zPEN9ti##O3CYnyKvuewhE(j#{N}V=GRwhx=7GBmd?@;Vcylqo<5~&w_on#{iWf8Vh z4At<6&{vFNgNiH;tH#!2+v2a-z#8U#@?(>?l`|!`ii^`^0iTsL;Ozm}Um_C_4{&@u zW&zx)fP+8)aDH#vNI1(xgI#JPBy>GrW?zJ6pF@;L>C}b`Oaik=r*MuN`4JIK6Lp~1 ztb3uNWLUAz1Dg)S+lsLrza%OpHFkGEcLseEye>he+o6{z1-|E!j#6P`rV7X{vZVy; z7VxW(DLd@Cu&*5}KDi4~+o4zCcC_$7z)n5Z4*XoW!5pm1$UwyytvIC{aH98RDhf$Z z5RIuVE{Ei{S=7kIZf$Dhn=>cj?rfOv=3MO7{{Y9$^&pVH35*{Bt{ov*dn%vCeOESA zdJUSHd)32U)-?k7gvRPHa%**;%ghq2w(hkht*nfu+KZ|Shx(#F7!4yguEhLqeo_A| zV({6RF@7p+_J8_3ydc5guLoa-XcCu%NALC2S33D?K5|@YNh*Nc%4a12T=e`4tO{jC zPx<)#|1IgMyb0|pz{FoJ)s;Lf&(%Np6L~Fp*zvLpa=F4XG1qC4(okd4C>zL>XWVC^ z!eq;S;OM z#{SX8JBg6*V-t2L2=FiY2O!%I;N?I&sW`$#rkb-_TsuyO{Yh$PcptJIVi>olz>% From c454ee8c91ae55cfe218a19eac9a06ed4bef0df4 Mon Sep 17 00:00:00 2001 From: ziwa-msft Date: Tue, 3 Mar 2020 22:19:05 -0800 Subject: [PATCH 35/61] remove api version bypass for a proper fix --- .../PermissiveRecordMatcherWithResourceApiExlcusion.cs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tools/ScenarioTest.ResourceManager/PermissiveRecordMatcherWithResourceApiExlcusion.cs b/tools/ScenarioTest.ResourceManager/PermissiveRecordMatcherWithResourceApiExlcusion.cs index fca757dc90bf..daa60ccfefb0 100644 --- a/tools/ScenarioTest.ResourceManager/PermissiveRecordMatcherWithResourceApiExlcusion.cs +++ b/tools/ScenarioTest.ResourceManager/PermissiveRecordMatcherWithResourceApiExlcusion.cs @@ -167,13 +167,6 @@ public static bool ContainsIgnoredProvider( // If we're looking at a specific provider and we have top level resource from this provider to ignore foreach (var resourceToIgnore in resourcesToIgnore) { - if (requestUri.Contains("/databases") && - requestUri.Contains("/providers/Microsoft.Sql/managedInstances/")) - { - apiVersion = String.Empty; - return true; - } - string[] segments = requestUri.Split(new char[] { '/' }, options: StringSplitOptions.RemoveEmptyEntries); // /subscriptions/.../resourceGroups/.../providers/Microsoft.X/resourceType...?api-version=Y From 6c9402d99f89463034e17426b242c1de8eccaf29 Mon Sep 17 00:00:00 2001 From: xaliciayang Date: Tue, 3 Mar 2020 23:13:27 -0800 Subject: [PATCH 36/61] fix test issue --- .../AdvancedDataSecurityManagedInstanceTests.cs | 3 ++- src/Sql/Sql.Test/ScenarioTests/DataClassificationTests.cs | 3 ++- src/Sql/Sql.Test/ScenarioTests/DataSyncTests.cs | 5 +++-- src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.cs | 3 ++- .../ScenarioTests/ManagedDatabaseCrudScenarioTests.cs | 4 +++- .../Sql.Test/ScenarioTests/VulnerabilityAssessmentTests.cs | 3 ++- 6 files changed, 14 insertions(+), 7 deletions(-) diff --git a/src/Sql/Sql.Test/ScenarioTests/AdvancedDataSecurityManagedInstanceTests.cs b/src/Sql/Sql.Test/ScenarioTests/AdvancedDataSecurityManagedInstanceTests.cs index d92049c6dd49..8258c35b0e4d 100644 --- a/src/Sql/Sql.Test/ScenarioTests/AdvancedDataSecurityManagedInstanceTests.cs +++ b/src/Sql/Sql.Test/ScenarioTests/AdvancedDataSecurityManagedInstanceTests.cs @@ -34,7 +34,8 @@ protected override void SetupManagementClients(RestTestFramework.MockContext con public AdvancedDataSecurityManagedInstanceTests(ITestOutputHelper output) : base(output) { base.resourceTypesToIgnoreApiVersion = new string[] { - "Microsoft.Sql/managedInstances" + "Microsoft.Sql/managedInstances", + "Microsoft.Sql/managedInstances/databases" }; } diff --git a/src/Sql/Sql.Test/ScenarioTests/DataClassificationTests.cs b/src/Sql/Sql.Test/ScenarioTests/DataClassificationTests.cs index 2d833b1e68df..778075bf92d7 100644 --- a/src/Sql/Sql.Test/ScenarioTests/DataClassificationTests.cs +++ b/src/Sql/Sql.Test/ScenarioTests/DataClassificationTests.cs @@ -25,7 +25,8 @@ public DataClassificationTests(ITestOutputHelper output) : base(output) { base.resourceTypesToIgnoreApiVersion = new string[] { "Microsoft.Sql/managedInstances", - "Microsoft.Sql/servers" + "Microsoft.Sql/servers", + "Microsoft.Sql/managedInstances/databases" }; } diff --git a/src/Sql/Sql.Test/ScenarioTests/DataSyncTests.cs b/src/Sql/Sql.Test/ScenarioTests/DataSyncTests.cs index f6c17dfd9061..bccee04301d8 100644 --- a/src/Sql/Sql.Test/ScenarioTests/DataSyncTests.cs +++ b/src/Sql/Sql.Test/ScenarioTests/DataSyncTests.cs @@ -27,7 +27,8 @@ public DataSyncTests(ITestOutputHelper output) : base(output) XunitTracingInterceptor.AddToContext(new XunitTracingInterceptor(output)); base.resourceTypesToIgnoreApiVersion = new string[] { - "Microsoft.Sql/servers" + "Microsoft.Sql/servers", + "Microsoft.Sql/managedInstances/databases" }; } @@ -134,6 +135,6 @@ public void TestSyncMemberSchemaRefreshAndGet() public void TestSyncMemberRemove() { RunPowerShellTest("Test-RemoveSyncMember"); - } + } } } diff --git a/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.cs b/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.cs index 676ecbea2ca5..ed24b2f2fb0e 100644 --- a/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.cs +++ b/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.cs @@ -34,7 +34,8 @@ protected override void SetupManagementClients(RestTestFramework.MockContext con public ManagedDatabaseBackupTests(ITestOutputHelper output) : base(output) { base.resourceTypesToIgnoreApiVersion = new string[] { - "Microsoft.Sql/managedInstances" + "Microsoft.Sql/managedInstances", + "Microsoft.Sql/managedInstances/databases" }; } diff --git a/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseCrudScenarioTests.cs b/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseCrudScenarioTests.cs index 0d18cbc77ecf..a78752731c67 100644 --- a/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseCrudScenarioTests.cs +++ b/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseCrudScenarioTests.cs @@ -35,7 +35,9 @@ protected override void SetupManagementClients(RestTestFramework.MockContext con public ManagedDatabaseCrudScenarioTests(ITestOutputHelper output) : base(output) { base.resourceTypesToIgnoreApiVersion = new string[] { - "Microsoft.Sql/managedInstances" + "Microsoft.Sql/managedInstances", + "Microsoft.Sql/managedInstances/databases", + "Microsoft.Network/virtualNetworks" }; } diff --git a/src/Sql/Sql.Test/ScenarioTests/VulnerabilityAssessmentTests.cs b/src/Sql/Sql.Test/ScenarioTests/VulnerabilityAssessmentTests.cs index be4c946b6621..eec7efd3865d 100644 --- a/src/Sql/Sql.Test/ScenarioTests/VulnerabilityAssessmentTests.cs +++ b/src/Sql/Sql.Test/ScenarioTests/VulnerabilityAssessmentTests.cs @@ -33,7 +33,8 @@ protected override void SetupManagementClients(RestTestFramework.MockContext con public VulnerabilityAssessmentTests(ITestOutputHelper output) : base(output) { base.resourceTypesToIgnoreApiVersion = new string[] { - "Microsoft.Sql/servers" + "Microsoft.Sql/managedInstances", + "Microsoft.Sql/managedInstances/databases" }; } From c48717df20f16facf8259745882fc86d64ef1372 Mon Sep 17 00:00:00 2001 From: ziwa-msft Date: Tue, 3 Mar 2020 23:33:18 -0800 Subject: [PATCH 37/61] skipping faulty mock tests --- .../ScenarioTests/ManagedDatabaseCrudScenarioTests.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseCrudScenarioTests.cs b/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseCrudScenarioTests.cs index a78752731c67..04e61d1acf6f 100644 --- a/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseCrudScenarioTests.cs +++ b/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseCrudScenarioTests.cs @@ -37,7 +37,7 @@ public ManagedDatabaseCrudScenarioTests(ITestOutputHelper output) : base(output) base.resourceTypesToIgnoreApiVersion = new string[] { "Microsoft.Sql/managedInstances", "Microsoft.Sql/managedInstances/databases", - "Microsoft.Network/virtualNetworks" + "Microsoft.Sql/managedInstances/managedDatabases" }; } @@ -48,14 +48,14 @@ public void TestCreateManagedDatabase() RunPowerShellTest("Test-CreateManagedDatabase"); } - [Fact] + [Fact(Skip = "Skip due to bug in ignore api version plus long setup time for managed instance")] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestGetManagedDatabase() { RunPowerShellTest("Test-GetManagedDatabase"); } - [Fact] + [Fact(Skip = "Skip due to long setup time for managed instance")] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestRemoveManagedDatabase() { From 186fde08df78bc9846e3b3e870287718a0083e15 Mon Sep 17 00:00:00 2001 From: Yabo Hu Date: Wed, 4 Mar 2020 16:19:28 +0800 Subject: [PATCH 38/61] add SupportedAggregationTypes and Dimentions to PSMetricDefinition --- src/Monitor/Monitor/OutputClasses/PSMetricDefinition.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Monitor/Monitor/OutputClasses/PSMetricDefinition.cs b/src/Monitor/Monitor/OutputClasses/PSMetricDefinition.cs index b155df423e02..9ae16dc5dfba 100644 --- a/src/Monitor/Monitor/OutputClasses/PSMetricDefinition.cs +++ b/src/Monitor/Monitor/OutputClasses/PSMetricDefinition.cs @@ -26,7 +26,7 @@ public class PSMetricDefinition : MetricDefinition /// /// The MetricDefinition public PSMetricDefinition(MetricDefinition metricDefinition) - : base(name: new PSLocalizableString(metricDefinition.Name), metricAvailabilities: new PSMetricAvailabilityCollection(metricDefinition.MetricAvailabilities), primaryAggregationType: metricDefinition.PrimaryAggregationType, resourceId: metricDefinition.ResourceId, unit: metricDefinition.Unit, id: metricDefinition.Id) + : base(name: new PSLocalizableString(metricDefinition.Name), metricAvailabilities: new PSMetricAvailabilityCollection(metricDefinition.MetricAvailabilities), primaryAggregationType: metricDefinition.PrimaryAggregationType, resourceId: metricDefinition.ResourceId, unit: metricDefinition.Unit, id: metricDefinition.Id, dimensions: metricDefinition.Dimensions, supportedAggregationTypes: metricDefinition.SupportedAggregationTypes) { } } From d2f9c03dba89d187bc4052aa98a3f58698c80aed Mon Sep 17 00:00:00 2001 From: xaliciayang Date: Wed, 4 Mar 2020 00:46:49 -0800 Subject: [PATCH 39/61] More updates to help documentation --- .../ManagedDatabaseCrudScenarioTests.cs | 4 +- src/Sql/Sql/ChangeLog.md | 3 +- ...ceDatabaseBackupLongTermRetentionPolicy.md | 27 +++++++++-- ...InstanceDatabaseLongTermRetentionBackup.md | 27 +++++++++-- ...InstanceDatabaseLongTermRetentionBackup.md | 16 +++++-- .../Sql/help/Restore-AzSqlInstanceDatabase.md | 32 ++++++++++++- ...ceDatabaseBackupLongTermRetentionPolicy.md | 42 ++++++++++++++++-- tools/PS-VSPrompt.lnk | Bin 0 -> 2180 bytes 8 files changed, 131 insertions(+), 20 deletions(-) create mode 100644 tools/PS-VSPrompt.lnk diff --git a/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseCrudScenarioTests.cs b/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseCrudScenarioTests.cs index a78752731c67..1cc09b5ecc41 100644 --- a/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseCrudScenarioTests.cs +++ b/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseCrudScenarioTests.cs @@ -55,14 +55,14 @@ public void TestGetManagedDatabase() RunPowerShellTest("Test-GetManagedDatabase"); } - [Fact] + [Fact(Skip = "Skip due to bug in ignore api version plus long setup time for managed instance")] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestRemoveManagedDatabase() { RunPowerShellTest("Test-RemoveManagedDatabase"); } - [Fact] + [Fact(Skip = "Skip due to long setup time for managed instance")] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestRestoreManagedDatabase() { diff --git a/src/Sql/Sql/ChangeLog.md b/src/Sql/Sql/ChangeLog.md index ffc5eb3ecc45..1b40490d7144 100644 --- a/src/Sql/Sql/ChangeLog.md +++ b/src/Sql/Sql/ChangeLog.md @@ -19,7 +19,7 @@ --> ## Upcoming Release * Added PublicNetworkAccess to New-AzSqlServer and Set-AzSqlServer -* Added support for Long Term Retention services for Managed instances +* Added support for Long Term Retention backup configuration for Managed Databases - Get/Set LTR policy on a managed database - Get LTR backup(s) by managed database, managed instance, or by location - Remove an LTR backup @@ -27,7 +27,6 @@ ## Version 2.3.0 * Added support for cross subscription point in time restore on Managed Instances. -* Add support for changing existing Sql Managed Instance hardware generation * Added support for changing existing Sql Managed Instance hardware generation * Fixed `Update-AzSqlServerVulnerabilityAssessmentSetting` help examples: parameter/property output - EmailAdmins diff --git a/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md b/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md index a791806c86c6..d2359aac9f2d 100644 --- a/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md +++ b/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy ## SYNOPSIS -{{ Fill in the Synopsis }} +Gets a managed database's long term retention policy ## SYNTAX @@ -19,16 +19,27 @@ Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy [-InstanceName] ``` ## DESCRIPTION -{{ Fill in the Description }} +The **Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy** cmdlet gets the long term retention policy registered to this managed database. +The policy is an Azure Backup resource used to define backup storage policy. ## EXAMPLES ### Example 1 ```powershell -PS C:\> {{ Add example code here }} +PS C:\> Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy -ResourceGroupName cl_stage_sea_cv -InstanceName seageodr-gen5-gp -DatabaseName test + + +ResourceGroupName : cl_stage_sea_cv +ManagedInstanceName : seageodr-gen5-gp +DatabaseName : test +WeeklyRetention : P2W +MonthlyRetention : PT0S +YearlyRetention : PT0S +WeekOfYear : 0 +Location : ``` -{{ Add example description here }} +This command gets the current version of the long term retention policy for database01 ## PARAMETERS @@ -137,3 +148,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS + +[Get-AzSqlInstanceDatabaseLongTermRetentionBackup](./Get-AzSqlInstanceDatabaseLongTermRetentionBackup.md) + +[Remove-AzSqlInstanceDatabaseLongTermRetentionBackup](./Remove-AzSqlInstanceDatabaseLongTermRetentionBackup.md) + +[Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy](./Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md) + +[SQL Database Documentation](https://docs.microsoft.com/azure/sql-database/) \ No newline at end of file diff --git a/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseLongTermRetentionBackup.md b/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseLongTermRetentionBackup.md index a05524a7ad25..18ab5268c72a 100644 --- a/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseLongTermRetentionBackup.md +++ b/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseLongTermRetentionBackup.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Get-AzSqlInstanceDatabaseLongTermRetentionBackup ## SYNOPSIS -{{ Fill in the Synopsis }} +Gets long term retention backup(s). ## SYNTAX @@ -66,10 +66,23 @@ Get-AzSqlInstanceDatabaseLongTermRetentionBackup [-InputObject] {{ Add example code here }} +PS C:\> Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location southeastasia -ResourceGroupName cl_stage_sea_cv -InstanceName seageodr-gen5-gp -DatabaseName test + + +BackupExpirationTime : 3/10/2020 1:10:45 PM +BackupName : 5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000 +BackupTime : 2/22/2020 6:04:15 AM +DatabaseName : test +DatabaseDeletionTime : 2/24/2020 2:56:44 PM +Location : southeastasia +ResourceId : /subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManaged + Instances/seageodr-gen5-gp/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000 +ManagedInstanceName : seageodr-gen5-gp +InstanceCreateTime : 10/17/2019 4:52:10 PM +ResourceGroupName : cl_stage_sea_cv ``` -{{ Add example description here }} +This command gets all long term retention backups for a particular database. Resource Group is optional. ## PARAMETERS @@ -273,3 +286,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS + +[Remove-AzSqlInstanceDatabaseLongTermRetentionBackup](./Remove-AzSqlInstanceDatabaseLongTermRetentionBackup.md) + +[Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy](./Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md) + +[Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy](./Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md) + +[SQL Database Documentation](https://docs.microsoft.com/azure/sql-database/) \ No newline at end of file diff --git a/src/Sql/Sql/help/Remove-AzSqlInstanceDatabaseLongTermRetentionBackup.md b/src/Sql/Sql/help/Remove-AzSqlInstanceDatabaseLongTermRetentionBackup.md index f5db43a7b3db..5b1618be4887 100644 --- a/src/Sql/Sql/help/Remove-AzSqlInstanceDatabaseLongTermRetentionBackup.md +++ b/src/Sql/Sql/help/Remove-AzSqlInstanceDatabaseLongTermRetentionBackup.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Remove-AzSqlInstanceDatabaseLongTermRetentionBackup ## SYNOPSIS -{{ Fill in the Synopsis }} +Deletes a long term retention backup. ## SYNTAX @@ -33,16 +33,16 @@ Remove-AzSqlInstanceDatabaseLongTermRetentionBackup [-ResourceId] [-For ``` ## DESCRIPTION -{{ Fill in the Description }} +The **Remove-AzSqlInstanceDatabaseLongTermRetentionBackup** cmdlet deletes the backup specified. ## EXAMPLES ### Example 1 ```powershell -PS C:\> {{ Add example code here }} +PS C:\> Remove-AzSqlInstanceDatabaseLongTermRetentionBackup -Location southeastasia -ResourceGroupName cl_stage_sea_cv -InstanceName seageodr-gen5-gp -DatabaseName test -BackupName 5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000 ``` -{{ Add example description here }} +Deletes the backup with name 5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000 ## PARAMETERS @@ -228,3 +228,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS + +[Get-AzSqlInstanceDatabaseLongTermRetentionBackup](./Get-AzSqlInstanceDatabaseLongTermRetentionBackup.md) + +[Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy](./Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md) + +[Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy](./Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md) + +[SQL Database Documentation](https://docs.microsoft.com/azure/sql-database/) \ No newline at end of file diff --git a/src/Sql/Sql/help/Restore-AzSqlInstanceDatabase.md b/src/Sql/Sql/help/Restore-AzSqlInstanceDatabase.md index 85a84bbcfea0..a68546d3dc97 100644 --- a/src/Sql/Sql/help/Restore-AzSqlInstanceDatabase.md +++ b/src/Sql/Sql/help/Restore-AzSqlInstanceDatabase.md @@ -102,7 +102,7 @@ Restore-AzSqlInstanceDatabase [-FromLongTermRetentionBackup] [-SubscriptionId Restore-AzSqlinstanceDatabase -InputObject $deletedDatabase[0] -PointInT The first command gets the deleted instance databases named 'DB1' on Instance 'managedInstance1' The second command restores the the fetched database, from the specified point-in-time backup to the instance database named Database01_restored using input object. +### Example 5: Restore a database from LTR backup. +``` +PS C:\> Restore-AzSqlInstanceDatabase -FromLongTermRetentionBackup -ResourceId /subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabas es/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000 -TargetInstanceDatabaseName restore-sample -TargetInstanceName seageodr-gen5-gp -TargetResourceGroupName cl_stage_sea_cv + + +Location : southeastasia +Tags : +Collation : SQL_Latin1_General_CP1_CI_AS +Status : Online +RestorePointInTime : +DefaultSecondaryLocation : northeurope +CatalogCollation : +CreateMode : +StorageContainerUri : +StorageContainerSasToken : +SourceDatabaseId : +FailoverGroupId : +RecoverableDatabaseId : +RestorableDroppedDatabaseId : +LongTermRetentionBackupResourceId : +ResourceGroupName : cl_stage_sea_cv +ManagedInstanceName : seageodr-gen5-gp +Name : restore-sample +CreationDate : 3/4/2020 8:12:56 AM +EarliestRestorePoint : 3/4/2020 8:14:29 AM +Id : /subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/restore-sample +``` + +This command restores an LTR backup with the given resource ID (which can be found by running Get-AzSqlInstanceDatabaseLongTermRetentionBackup). + ## PARAMETERS ### -AsJob diff --git a/src/Sql/Sql/help/Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md b/src/Sql/Sql/help/Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md index a12e72e8d14e..51113d2f5703 100644 --- a/src/Sql/Sql/help/Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md +++ b/src/Sql/Sql/help/Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy ## SYNOPSIS -{{ Fill in the Synopsis }} +Sets a managed database's long term retention policy. ## SYNTAX @@ -42,17 +42,43 @@ Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy [-WeeklyRetention {{ Add example code here }} +PS C:\> Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy -ResourceGroupName cl_stage_sea_cv -InstanceName seageodr-gen5-gp -DatabaseName test -WeeklyRetention "P1W" + + +ResourceGroupName : cl_stage_sea_cv +ManagedInstanceName : seageodr-gen5-gp +DatabaseName : test +WeeklyRetention : P1W +MonthlyRetention : PT0S +YearlyRetention : PT0S +WeekOfYear : 0 +Location : +``` + +This command configures the database's long term retention weekly policy to one week. + +### Example 2 ``` +PS D:\src\azure\azure-powershell> Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy -ResourceGroupName cl_stage_sea_cv -InstanceName seageodr-gen5-gp -DatabaseName target1 -RemovePolicy -{{ Add example description here }} +ResourceGroupName : cl_stage_sea_cv +ManagedInstanceName : seageodr-gen5-gp +DatabaseName : target1 +WeeklyRetention : PT0S +MonthlyRetention : PT0S +YearlyRetention : PT0S +WeekOfYear : 0 +Location : +... + +This command removes the long term retention policy from the database. ## PARAMETERS ### -DatabaseName @@ -267,3 +293,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS + +[Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy](./Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md) + +[Get-AzSqlInstanceDatabaseLongTermRetentionBackup](./Get-AzSqlInstanceDatabaseLongTermRetentionBackup.md) + +[Remove-AzSqlInstanceDatabaseLongTermRetentionBackup](./Remove-AzSqlInstanceDatabaseLongTermRetentionBackup.md) + +[SQL Database Documentation](https://docs.microsoft.com/azure/sql-database/) \ No newline at end of file diff --git a/tools/PS-VSPrompt.lnk b/tools/PS-VSPrompt.lnk new file mode 100644 index 0000000000000000000000000000000000000000..560dc664b6d7530ca5fa501ec0ef3cda146b796f GIT binary patch literal 2180 zcmd^A-Aj{U6hE68nqrD(Dwb22Ddl|CIX_4+H+7O9vlsk`3FFxs5dP=>tFl^ypARBLxyT^@-FDH!C-k5`NX0&6s|`5DTF{>M3w#VKmZ zPEN9ti##O3CYnyKvuewhE(j#{N}V=GRwhx=7GBmd?@;Vcylqo<5~&w_on#{iWf8Vh z4At<6&{vFNgNiH;tH#!2+v2a-z#8U#@?(>?l`|!`ii^`^0iTsL;Ozm}Um_C_4{&@u zW&zx)fP+8)aDH#vNI1(xgI#JPBy>GrW?zJ6pF@;L>C}b`Oaik=r*MuN`4JIK6Lp~1 ztb3uNWLUAz1Dg)S+lsLrza%OpHFkGEcLseEye>he+o6{z1-|E!j#6P`rV7X{vZVy; z7VxW(DLd@Cu&*5}KDi4~+o4zCcC_$7z)n5Z4*XoW!5pm1$UwyytvIC{aH98RDhf$Z z5RIuVE{Ei{S=7kIZf$Dhn=>cj?rfOv=3MO7{{Y9$^&pVH35*{Bt{ov*dn%vCeOESA zdJUSHd)32U)-?k7gvRPHa%**;%ghq2w(hkht*nfu+KZ|Shx(#F7!4yguEhLqeo_A| zV({6RF@7p+_J8_3ydc5guLoa-XcCu%NALC2S33D?K5|@YNh*Nc%4a12T=e`4tO{jC zPx<)#|1IgMyb0|pz{FoJ)s;Lf&(%Np6L~Fp*zvLpa=F4XG1qC4(okd4C>zL>XWVC^ z!eq;S;OM z#{SX8JBg6*V-t2L2=FiY2O!%I;N?I&sW`$#rkb-_TsuyO{Yh$PcptJIVi>olz>% literal 0 HcmV?d00001 From 189002bf1e4e49dc8998b3cfa22e75d2afcfdaaf Mon Sep 17 00:00:00 2001 From: Yabo Hu Date: Wed, 4 Mar 2020 17:24:31 +0800 Subject: [PATCH 40/61] add entry in changelog.md --- src/Monitor/Monitor/ChangeLog.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Monitor/Monitor/ChangeLog.md b/src/Monitor/Monitor/ChangeLog.md index c21b5bb43077..c864f9e13da4 100644 --- a/src/Monitor/Monitor/ChangeLog.md +++ b/src/Monitor/Monitor/ChangeLog.md @@ -21,6 +21,7 @@ * Fixed description of the Get-AzLog cmdlet. * A new parameter called ActionGroupId was added to `New-AzMetricAlertRuleV2` command. - The user can provide either ActionGroupId(string) or ActionGorup(ActivityLogAlertActionGroup). +*Fix output value for Get-AzMetricDefinition ## Version 1.5.0 * Update references in .psd1 to use relative path From a12d907808c62fe87a84f2eb0fb735828e47807e Mon Sep 17 00:00:00 2001 From: Yabo Hu Date: Wed, 4 Mar 2020 17:26:26 +0800 Subject: [PATCH 41/61] fix format in changelog.md --- src/Monitor/Monitor/ChangeLog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Monitor/Monitor/ChangeLog.md b/src/Monitor/Monitor/ChangeLog.md index c864f9e13da4..89518c7d9a9a 100644 --- a/src/Monitor/Monitor/ChangeLog.md +++ b/src/Monitor/Monitor/ChangeLog.md @@ -21,7 +21,7 @@ * Fixed description of the Get-AzLog cmdlet. * A new parameter called ActionGroupId was added to `New-AzMetricAlertRuleV2` command. - The user can provide either ActionGroupId(string) or ActionGorup(ActivityLogAlertActionGroup). -*Fix output value for Get-AzMetricDefinition +* Fix output value for Get-AzMetricDefinition ## Version 1.5.0 * Update references in .psd1 to use relative path From 5f191ad6056b5ffe00a37aa6cf48d6fb9bee2a39 Mon Sep 17 00:00:00 2001 From: xaliciayang Date: Wed, 4 Mar 2020 01:52:55 -0800 Subject: [PATCH 42/61] generic names in help files --- ...tanceDatabaseBackupLongTermRetentionPolicy.md | 8 ++++---- ...SqlInstanceDatabaseLongTermRetentionBackup.md | 14 +++++++------- ...SqlInstanceDatabaseLongTermRetentionBackup.md | 4 ++-- .../Sql/help/Restore-AzSqlInstanceDatabase.md | 16 ++++++++-------- ...tanceDatabaseBackupLongTermRetentionPolicy.md | 14 +++++++------- 5 files changed, 28 insertions(+), 28 deletions(-) diff --git a/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md b/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md index d2359aac9f2d..cf19f856531d 100644 --- a/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md +++ b/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md @@ -26,11 +26,11 @@ The policy is an Azure Backup resource used to define backup storage policy. ### Example 1 ```powershell -PS C:\> Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy -ResourceGroupName cl_stage_sea_cv -InstanceName seageodr-gen5-gp -DatabaseName test +PS C:\> Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy -ResourceGroupName testResourceGroup -InstanceName testInstance -DatabaseName test -ResourceGroupName : cl_stage_sea_cv -ManagedInstanceName : seageodr-gen5-gp +ResourceGroupName : testResourceGroup +ManagedInstanceName : testInstance DatabaseName : test WeeklyRetention : P2W MonthlyRetention : PT0S @@ -39,7 +39,7 @@ WeekOfYear : 0 Location : ``` -This command gets the current version of the long term retention policy for database01 +Gets the current version of the long term retention policy for the database ## PARAMETERS diff --git a/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseLongTermRetentionBackup.md b/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseLongTermRetentionBackup.md index 18ab5268c72a..0edd567b7f85 100644 --- a/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseLongTermRetentionBackup.md +++ b/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseLongTermRetentionBackup.md @@ -66,23 +66,23 @@ Get-AzSqlInstanceDatabaseLongTermRetentionBackup [-InputObject] Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location southeastasia -ResourceGroupName cl_stage_sea_cv -InstanceName seageodr-gen5-gp -DatabaseName test +PS C:\> Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location southeastasia -ResourceGroupName testResourceGroup -InstanceName testInstance -DatabaseName test BackupExpirationTime : 3/10/2020 1:10:45 PM -BackupName : 5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000 +BackupName : 15be823c-7e2c-49d8-819f-a3fdcad92215;132268250550000000 BackupTime : 2/22/2020 6:04:15 AM DatabaseName : test DatabaseDeletionTime : 2/24/2020 2:56:44 PM Location : southeastasia -ResourceId : /subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManaged - Instances/seageodr-gen5-gp/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000 -ManagedInstanceName : seageodr-gen5-gp +ResourceId : /subscriptions/f46521f3-5bb0-4eea-a3c2-c2d5987df96b/resourceGroups/testResourceGroup/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManaged + Instances/testInstance/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/15be823c-7e2c-49d8-819f-a3fdcad92215;132268250550000000 +ManagedInstanceName : testInstance InstanceCreateTime : 10/17/2019 4:52:10 PM -ResourceGroupName : cl_stage_sea_cv +ResourceGroupName : testResourceGroup ``` -This command gets all long term retention backups for a particular database. Resource Group is optional. +Gets all long term retention backups for a particular database. Resource Group is optional. ## PARAMETERS diff --git a/src/Sql/Sql/help/Remove-AzSqlInstanceDatabaseLongTermRetentionBackup.md b/src/Sql/Sql/help/Remove-AzSqlInstanceDatabaseLongTermRetentionBackup.md index 5b1618be4887..5da37057f15b 100644 --- a/src/Sql/Sql/help/Remove-AzSqlInstanceDatabaseLongTermRetentionBackup.md +++ b/src/Sql/Sql/help/Remove-AzSqlInstanceDatabaseLongTermRetentionBackup.md @@ -39,10 +39,10 @@ The **Remove-AzSqlInstanceDatabaseLongTermRetentionBackup** cmdlet deletes the b ### Example 1 ```powershell -PS C:\> Remove-AzSqlInstanceDatabaseLongTermRetentionBackup -Location southeastasia -ResourceGroupName cl_stage_sea_cv -InstanceName seageodr-gen5-gp -DatabaseName test -BackupName 5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000 +PS C:\> Remove-AzSqlInstanceDatabaseLongTermRetentionBackup -Location southeastasia -ResourceGroupName testResourceGroup -InstanceName testInstance -DatabaseName test -BackupName 15be823c-7e2c-49d8-819f-a3fdcad92215;132268250550000000 ``` -Deletes the backup with name 5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000 +Deletes the backup with name 15be823c-7e2c-49d8-819f-a3fdcad92215;132268250550000000 ## PARAMETERS diff --git a/src/Sql/Sql/help/Restore-AzSqlInstanceDatabase.md b/src/Sql/Sql/help/Restore-AzSqlInstanceDatabase.md index a68546d3dc97..4e26d84f1010 100644 --- a/src/Sql/Sql/help/Restore-AzSqlInstanceDatabase.md +++ b/src/Sql/Sql/help/Restore-AzSqlInstanceDatabase.md @@ -139,7 +139,7 @@ PS C:\> Restore-AzSqlinstanceDatabase -Name $deletedDatabase.Name -InstanceName The first command gets the deleted instance databases named 'DB1' on Instance 'managedInstance1' The second command restores the the fetched database, from the specified point-in-time backup to the instance database named Database01_restored. -### Example 4: Restore an deleted instance database from a point in time +### Example 5: Restore an deleted instance database from a point in time ``` PS C:\> $deletedDatabase = Get-AzSqlDeletedInstanceDatabaseBackup -ResourceGroupName "ResourceGroup01" -InstanceName "managedInstance1" -DatabaseName "DB1" PS C:\> Restore-AzSqlinstanceDatabase -InputObject $deletedDatabase[0] -PointInTime UTCDateTime -TargetInstanceDatabaseName "Database01_restored" @@ -148,9 +148,9 @@ PS C:\> Restore-AzSqlinstanceDatabase -InputObject $deletedDatabase[0] -PointInT The first command gets the deleted instance databases named 'DB1' on Instance 'managedInstance1' The second command restores the the fetched database, from the specified point-in-time backup to the instance database named Database01_restored using input object. -### Example 5: Restore a database from LTR backup. +### Example 6: Restore a database from LTR backup. ``` -PS C:\> Restore-AzSqlInstanceDatabase -FromLongTermRetentionBackup -ResourceId /subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabas es/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000 -TargetInstanceDatabaseName restore-sample -TargetInstanceName seageodr-gen5-gp -TargetResourceGroupName cl_stage_sea_cv +PS C:\> Restore-AzSqlInstanceDatabase -FromLongTermRetentionBackup -ResourceId /subscriptions/f46521f3-5bb0-4eea-a3c2-c2d5987df96b/resourceGroups/testResourceGroup/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/testInstance/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/15be823c-7e2c-49d8-819f-a3fdcad92215;132268250550000000 -TargetInstanceDatabaseName restoreTarget -TargetInstanceName testInstance -TargetResourceGroupName testResourceGroup Location : southeastasia @@ -168,15 +168,15 @@ FailoverGroupId : RecoverableDatabaseId : RestorableDroppedDatabaseId : LongTermRetentionBackupResourceId : -ResourceGroupName : cl_stage_sea_cv -ManagedInstanceName : seageodr-gen5-gp -Name : restore-sample +ResourceGroupName : testResourceGroup +ManagedInstanceName : testInstance +Name : restoreTarget CreationDate : 3/4/2020 8:12:56 AM EarliestRestorePoint : 3/4/2020 8:14:29 AM -Id : /subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/restore-sample +Id : /subscriptions/f46521f3-5bb0-4eea-a3c2-c2d5987df96b/resourceGroups/testResourceGroup/providers/Microsoft.Sql/managedInstances/testInstance/databases/restoreTarget ``` -This command restores an LTR backup with the given resource ID (which can be found by running Get-AzSqlInstanceDatabaseLongTermRetentionBackup). +Restores LTR backup with the given resource ID (which can be found by running Get-AzSqlInstanceDatabaseLongTermRetentionBackup). ## PARAMETERS diff --git a/src/Sql/Sql/help/Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md b/src/Sql/Sql/help/Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md index 51113d2f5703..2cba1dd146c6 100644 --- a/src/Sql/Sql/help/Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md +++ b/src/Sql/Sql/help/Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md @@ -48,11 +48,11 @@ The **Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy** cmdlet sets the l ### Example 1 ```powershell -PS C:\> Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy -ResourceGroupName cl_stage_sea_cv -InstanceName seageodr-gen5-gp -DatabaseName test -WeeklyRetention "P1W" +PS C:\> Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy -ResourceGroupName testResourceGroup -InstanceName testInstance -DatabaseName test -WeeklyRetention "P1W" -ResourceGroupName : cl_stage_sea_cv -ManagedInstanceName : seageodr-gen5-gp +ResourceGroupName : testResourceGroup +ManagedInstanceName : testInstance DatabaseName : test WeeklyRetention : P1W MonthlyRetention : PT0S @@ -61,15 +61,15 @@ WeekOfYear : 0 Location : ``` -This command configures the database's long term retention weekly policy to one week. +Configures the database's long term retention weekly policy to one week. ### Example 2 ``` -PS D:\src\azure\azure-powershell> Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy -ResourceGroupName cl_stage_sea_cv -InstanceName seageodr-gen5-gp -DatabaseName target1 -RemovePolicy +PS D:\src\azure\azure-powershell> Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy -ResourceGroupName testResourceGroup -InstanceName testInstance -DatabaseName target1 -RemovePolicy -ResourceGroupName : cl_stage_sea_cv -ManagedInstanceName : seageodr-gen5-gp +ResourceGroupName : testResourceGroup +ManagedInstanceName : testInstance DatabaseName : target1 WeeklyRetention : PT0S MonthlyRetention : PT0S From 31bdf2bd043ca7da02a3c5f1a6af002421c517df Mon Sep 17 00:00:00 2001 From: xaliciayang Date: Wed, 4 Mar 2020 02:02:13 -0800 Subject: [PATCH 43/61] adding online versions to help files --- .../Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md | 2 +- .../help/Get-AzSqlInstanceDatabaseLongTermRetentionBackup.md | 2 +- .../help/Remove-AzSqlInstanceDatabaseLongTermRetentionBackup.md | 2 +- .../Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md b/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md index cf19f856531d..a44c65f6e4fb 100644 --- a/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md +++ b/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Sql.dll-Help.xml Module Name: Az.Sql -online version: +online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/get-azsqlinstancedatabasebackuplongtermretentionpolicy schema: 2.0.0 --- diff --git a/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseLongTermRetentionBackup.md b/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseLongTermRetentionBackup.md index 0edd567b7f85..10c78f4e5cb5 100644 --- a/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseLongTermRetentionBackup.md +++ b/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseLongTermRetentionBackup.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Sql.dll-Help.xml Module Name: Az.Sql -online version: +online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/get-azsqlinstancedatabaselongtermretentionbackup schema: 2.0.0 --- diff --git a/src/Sql/Sql/help/Remove-AzSqlInstanceDatabaseLongTermRetentionBackup.md b/src/Sql/Sql/help/Remove-AzSqlInstanceDatabaseLongTermRetentionBackup.md index 5da37057f15b..c290e54e61e6 100644 --- a/src/Sql/Sql/help/Remove-AzSqlInstanceDatabaseLongTermRetentionBackup.md +++ b/src/Sql/Sql/help/Remove-AzSqlInstanceDatabaseLongTermRetentionBackup.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Sql.dll-Help.xml Module Name: Az.Sql -online version: +online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/remove-azsqlinstancedatabaselongtermretentionbackup schema: 2.0.0 --- diff --git a/src/Sql/Sql/help/Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md b/src/Sql/Sql/help/Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md index 2cba1dd146c6..34049c6ea22e 100644 --- a/src/Sql/Sql/help/Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md +++ b/src/Sql/Sql/help/Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Sql.dll-Help.xml Module Name: Az.Sql -online version: +online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/set-azsqlinstancedatabaselongtermretentionpolicy schema: 2.0.0 --- From 9c1bfcfd2d2e9129dcb830084b64861310677f18 Mon Sep 17 00:00:00 2001 From: xaliciayang Date: Wed, 4 Mar 2020 02:22:45 -0800 Subject: [PATCH 44/61] fixing online version --- .../Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Sql/Sql/help/Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md b/src/Sql/Sql/help/Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md index 34049c6ea22e..06b0e5a7bf1f 100644 --- a/src/Sql/Sql/help/Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md +++ b/src/Sql/Sql/help/Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Sql.dll-Help.xml Module Name: Az.Sql -online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/set-azsqlinstancedatabaselongtermretentionpolicy +online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/set-azsqlinstancedatabasebackuplongtermretentionpolicy schema: 2.0.0 --- From 0084309b3382dec24cfb7a6dff5543dd4e7e305c Mon Sep 17 00:00:00 2001 From: xaliciayang Date: Wed, 4 Mar 2020 03:02:38 -0800 Subject: [PATCH 45/61] more tweakes to set-...policy help docs --- ...t-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/Sql/Sql/help/Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md b/src/Sql/Sql/help/Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md index 06b0e5a7bf1f..f86a4c303b2b 100644 --- a/src/Sql/Sql/help/Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md +++ b/src/Sql/Sql/help/Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy ## SYNOPSIS -Sets a managed database's long term retention policy. +The **Set-AzSqlInstanceDatabaseLongTermRetentionBackup** cmdlet sets a managed database's long term retention policy. ## SYNTAX @@ -65,7 +65,7 @@ Configures the database's long term retention weekly policy to one week. ### Example 2 ``` -PS D:\src\azure\azure-powershell> Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy -ResourceGroupName testResourceGroup -InstanceName testInstance -DatabaseName target1 -RemovePolicy +PS C:\> Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy -ResourceGroupName testResourceGroup -InstanceName testInstance -DatabaseName target1 -RemovePolicy ResourceGroupName : testResourceGroup @@ -76,7 +76,8 @@ MonthlyRetention : PT0S YearlyRetention : PT0S WeekOfYear : 0 Location : -... +``` + This command removes the long term retention policy from the database. ## PARAMETERS From 30302ac837a2728eba909dccce45aee11560fec4 Mon Sep 17 00:00:00 2001 From: Dingmeng Xue <56333063+dingmeng-xue@users.noreply.github.com> Date: Wed, 4 Mar 2020 20:37:00 +0800 Subject: [PATCH 46/61] Update ChangeLog.md --- src/Monitor/Monitor/ChangeLog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Monitor/Monitor/ChangeLog.md b/src/Monitor/Monitor/ChangeLog.md index 89518c7d9a9a..2c27c1e447d2 100644 --- a/src/Monitor/Monitor/ChangeLog.md +++ b/src/Monitor/Monitor/ChangeLog.md @@ -21,7 +21,7 @@ * Fixed description of the Get-AzLog cmdlet. * A new parameter called ActionGroupId was added to `New-AzMetricAlertRuleV2` command. - The user can provide either ActionGroupId(string) or ActionGorup(ActivityLogAlertActionGroup). -* Fix output value for Get-AzMetricDefinition +* Fixed output value for Get-AzMetricDefinition ## Version 1.5.0 * Update references in .psd1 to use relative path From 26135d78ee70d94db3e391cb3d637ab07fdb385c Mon Sep 17 00:00:00 2001 From: "dixue@microsoft.com" Date: Wed, 4 Mar 2020 20:55:06 +0800 Subject: [PATCH 47/61] Correct version for changelog.md --- src/Monitor/Monitor/ChangeLog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Monitor/Monitor/ChangeLog.md b/src/Monitor/Monitor/ChangeLog.md index f602199adce1..bc32cfb6bdae 100644 --- a/src/Monitor/Monitor/ChangeLog.md +++ b/src/Monitor/Monitor/ChangeLog.md @@ -18,12 +18,12 @@ - Additional information about change #1 --> ## Upcoming Release +* Fixed output value for `Get-AzMetricDefinition` [#9714] ## Version 1.6.0 * Fixed description of the Get-AzLog cmdlet. * A new parameter called ActionGroupId was added to `New-AzMetricAlertRuleV2` command. - The user can provide either ActionGroupId(string) or ActionGorup(ActivityLogAlertActionGroup). -* Fixed output value for Get-AzMetricDefinition ## Version 1.5.0 * Update references in .psd1 to use relative path From a031657532f4ca33b5edcf9133638a5849bd03cf Mon Sep 17 00:00:00 2001 From: "dixue@microsoft.com" Date: Wed, 4 Mar 2020 21:02:11 +0800 Subject: [PATCH 48/61] Polish content for changelog.md --- ChangeLog.md | 2 +- src/Sql/Sql/ChangeLog.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index be804c867fe1..bfe5c94f1b14 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -48,7 +48,7 @@ * Brought ScopedDeployment from SDK 3.3.0 #### Az.Sql -* Added PublicNetworkAccess to New-AzSqlServer and Set-AzSqlServer +* Added PublicNetworkAccess to `New-AzSqlServer` and `Set-AzSqlServer` #### Az.Storage * Supported AllowProtectedAppendWrite in ImmutabilityPolicy diff --git a/src/Sql/Sql/ChangeLog.md b/src/Sql/Sql/ChangeLog.md index 46550a8063b0..96c5fbad8351 100644 --- a/src/Sql/Sql/ChangeLog.md +++ b/src/Sql/Sql/ChangeLog.md @@ -20,7 +20,7 @@ ## Upcoming Release ## Version 2.4.0 -* Added PublicNetworkAccess to New-AzSqlServer and Set-AzSqlServer +* Added PublicNetworkAccess to `New-AzSqlServer` and `Set-AzSqlServer` ## Version 2.3.0 * Added support for cross subscription point in time restore on Managed Instances. From b229eaffe0c68734286896255d8a7045d564accb Mon Sep 17 00:00:00 2001 From: "dixue@microsoft.com" Date: Wed, 4 Mar 2020 21:07:17 +0800 Subject: [PATCH 49/61] Add network release --- src/Network/Network/ChangeLog.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Network/Network/ChangeLog.md b/src/Network/Network/ChangeLog.md index b54497d1e5fe..662709998ad6 100644 --- a/src/Network/Network/ChangeLog.md +++ b/src/Network/Network/ChangeLog.md @@ -19,6 +19,7 @@ ---> ## Upcoming Release +* Updated dependency on Sql Management SDK. ## Version 2.3.1 * Added one extra parameter note for parameter `-EnableProxyProtocol` for `New-AzPrivateLinkService` cmdlet. From fcf3948a93d446d43a1b1bc70b1b2bb340cb9623 Mon Sep 17 00:00:00 2001 From: "dixue@microsoft.com" Date: Wed, 4 Mar 2020 22:27:51 +0800 Subject: [PATCH 50/61] For RC2 build --- ChangeLog.md | 6 + src/Monitor/Monitor/Az.Monitor.psd1 | 8 +- src/Monitor/Monitor/ChangeLog.md | 2 + .../Monitor/Properties/AssemblyInfo.cs | 4 +- src/Network/Network/Az.Network.psd1 | 10 +- src/Network/Network/ChangeLog.md | 4 +- .../Network/Properties/AssemblyInfo.cs | 4 +- tools/Az/Az.psd1 | 479 +- ....Azure.PowerShell.Cmdlets.Monitor.dll.json | 442 +- ....Azure.PowerShell.Cmdlets.Network.dll.json | 4926 ++++++++--------- 10 files changed, 2942 insertions(+), 2943 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index bfe5c94f1b14..d1c23668250d 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -31,6 +31,12 @@ - 'Set-AzIotHubDeviceParent' * Added support to manage device parent-child relationship. +#### Az.Monitor +* Fixed output value for 'Get-AzMetricDefinition' [#9714] + +#### Az.Network +* Updated Sql Management SDK. + #### Az.Resources * Fixed for null reference bug in 'Get-AzRoleAssignment' * Marked switch '-Force' and '-PassThru' optional in 'Remove-AzADGroup' [#10849] diff --git a/src/Monitor/Monitor/Az.Monitor.psd1 b/src/Monitor/Monitor/Az.Monitor.psd1 index 2a5a664ae5ce..4445ffb486c5 100644 --- a/src/Monitor/Monitor/Az.Monitor.psd1 +++ b/src/Monitor/Monitor/Az.Monitor.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 2/11/2020 +# Generated on: 3/4/2020 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '1.6.0' +ModuleVersion = '1.6.1' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -136,9 +136,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Fixed description of the Get-AzLog cmdlet. -* A new parameter called ActionGroupId was added to ''New-AzMetricAlertRuleV2'' command. - - The user can provide either ActionGroupId(string) or ActionGorup(ActivityLogAlertActionGroup).' + ReleaseNotes = '* Fixed output value for ''Get-AzMetricDefinition'' [#9714]' # Prerelease string of this module # Prerelease = '' diff --git a/src/Monitor/Monitor/ChangeLog.md b/src/Monitor/Monitor/ChangeLog.md index bc32cfb6bdae..32b2120479d7 100644 --- a/src/Monitor/Monitor/ChangeLog.md +++ b/src/Monitor/Monitor/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 1.6.1 * Fixed output value for `Get-AzMetricDefinition` [#9714] ## Version 1.6.0 diff --git a/src/Monitor/Monitor/Properties/AssemblyInfo.cs b/src/Monitor/Monitor/Properties/AssemblyInfo.cs index c9e128748364..d6feec294a02 100644 --- a/src/Monitor/Monitor/Properties/AssemblyInfo.cs +++ b/src/Monitor/Monitor/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("ed102280-3577-49bf-93dd-11b6e3a44a57")] -[assembly: AssemblyVersion("1.6.0")] -[assembly: AssemblyFileVersion("1.6.0")] +[assembly: AssemblyVersion("1.6.1")] +[assembly: AssemblyFileVersion("1.6.1")] diff --git a/src/Network/Network/Az.Network.psd1 b/src/Network/Network/Az.Network.psd1 index 648aae0bd27d..73c5832c82cd 100644 --- a/src/Network/Network/Az.Network.psd1 +++ b/src/Network/Network/Az.Network.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 2/13/2020 +# Generated on: 3/4/2020 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '2.3.1' +ModuleVersion = '2.3.2' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -509,11 +509,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Added one extra parameter note for parameter ''-EnableProxyProtocol'' for ''New-AzPrivateLinkService'' cmdlet. -* Fixed FilterData example in Start-AzVirtualNetworkGatewayConnectionPacketCapture.md and Start-AzVirtualnetworkGatewayPacketCapture.md. -* Added Packet Capture example for capture all inner and outer packets in Start-AzVirtualNetworkGatewayConnectionPacketCapture.md and Start-AzVirtualnetworkGatewayPacketCapture.md. -* Supported Azure Firewall Policy on VNet Firewalls - - No new cmdlets are added. Relaxing the restriction for firewall policy on VNet firewalls' + ReleaseNotes = '* Updated Sql Management SDK.' # Prerelease string of this module # Prerelease = '' diff --git a/src/Network/Network/ChangeLog.md b/src/Network/Network/ChangeLog.md index 662709998ad6..f61f5d67c82d 100644 --- a/src/Network/Network/ChangeLog.md +++ b/src/Network/Network/ChangeLog.md @@ -19,7 +19,9 @@ ---> ## Upcoming Release -* Updated dependency on Sql Management SDK. + +## Version 2.3.2 +* Updated Sql Management SDK. ## Version 2.3.1 * Added one extra parameter note for parameter `-EnableProxyProtocol` for `New-AzPrivateLinkService` cmdlet. diff --git a/src/Network/Network/Properties/AssemblyInfo.cs b/src/Network/Network/Properties/AssemblyInfo.cs index 669ee03a5fe1..5234a22518de 100644 --- a/src/Network/Network/Properties/AssemblyInfo.cs +++ b/src/Network/Network/Properties/AssemblyInfo.cs @@ -25,8 +25,8 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("be2ca022-590c-48ba-b465-9ab61d6e2ea0")] -[assembly: AssemblyVersion("2.3.1")] -[assembly: AssemblyFileVersion("2.3.1")] +[assembly: AssemblyVersion("2.3.2")] +[assembly: AssemblyFileVersion("2.3.2")] #if !SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Network.Test")] #endif diff --git a/tools/Az/Az.psd1 b/tools/Az/Az.psd1 index 2ed92814b255..1106ef08baef 100644 --- a/tools/Az/Az.psd1 +++ b/tools/Az/Az.psd1 @@ -8,245 +8,240 @@ @{ -# Script module or binary module file associated with this manifest. -# RootModule = '' - -# Version number of this module. -ModuleVersion = '3.6.0' - -# Supported PSEditions -CompatiblePSEditions = 'Core', 'Desktop' - -# ID used to uniquely identify this module -GUID = 'd48d710e-85cb-46a1-990f-22dae76f6b5f' - -# Author of this module -Author = 'Microsoft Corporation' - -# Company or vendor of this module -CompanyName = 'Microsoft Corporation' - -# Copyright statement for this module -Copyright = 'Microsoft Corporation. All rights reserved.' - -# Description of the functionality provided by this module -Description = 'Microsoft Azure PowerShell - Cmdlets to manage resources in Azure. This module is compatible with WindowsPowerShell and PowerShell Core. - -For more information about the Az module, please visit the following: https://docs.microsoft.com/en-us/powershell/azure/' - -# Minimum version of the PowerShell engine required by this module -PowerShellVersion = '5.1' - -# Name of the PowerShell host required by this module -# PowerShellHostName = '' - -# Minimum version of the PowerShell host required by this module -# PowerShellHostVersion = '' - -# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only. -DotNetFrameworkVersion = '4.7.2' - -# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. -# CLRVersion = '' - -# Processor architecture (None, X86, Amd64) required by this module -# ProcessorArchitecture = '' - -# Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }, - @{ModuleName = 'Az.Advisor'; RequiredVersion = '1.1.1'; }, - @{ModuleName = 'Az.Aks'; RequiredVersion = '1.0.3'; }, - @{ModuleName = 'Az.AnalysisServices'; RequiredVersion = '1.1.2'; }, - @{ModuleName = 'Az.ApiManagement'; RequiredVersion = '1.4.0'; }, - @{ModuleName = 'Az.ApplicationInsights'; RequiredVersion = '1.0.3'; }, - @{ModuleName = 'Az.Automation'; RequiredVersion = '1.3.6'; }, - @{ModuleName = 'Az.Batch'; RequiredVersion = '2.0.2'; }, - @{ModuleName = 'Az.Billing'; RequiredVersion = '1.0.2'; }, - @{ModuleName = 'Az.Cdn'; RequiredVersion = '1.4.2'; }, - @{ModuleName = 'Az.CognitiveServices'; RequiredVersion = '1.2.3'; }, - @{ModuleName = 'Az.Compute'; RequiredVersion = '3.5.0'; }, - @{ModuleName = 'Az.ContainerInstance'; RequiredVersion = '1.0.3'; }, - @{ModuleName = 'Az.ContainerRegistry'; RequiredVersion = '1.1.1'; }, - @{ModuleName = 'Az.DataBoxEdge'; RequiredVersion = '1.1.0'; }, - @{ModuleName = 'Az.DataFactory'; RequiredVersion = '1.6.1'; }, - @{ModuleName = 'Az.DataLakeAnalytics'; RequiredVersion = '1.0.2'; }, - @{ModuleName = 'Az.DataLakeStore'; RequiredVersion = '1.2.7'; }, - @{ModuleName = 'Az.DeploymentManager'; RequiredVersion = '1.1.0'; }, - @{ModuleName = 'Az.DevTestLabs'; RequiredVersion = '1.0.2'; }, - @{ModuleName = 'Az.Dns'; RequiredVersion = '1.1.2'; }, - @{ModuleName = 'Az.EventGrid'; RequiredVersion = '1.2.3'; }, - @{ModuleName = 'Az.EventHub'; RequiredVersion = '1.4.3'; }, - @{ModuleName = 'Az.FrontDoor'; RequiredVersion = '1.4.0'; }, - @{ModuleName = 'Az.HDInsight'; RequiredVersion = '3.0.3'; }, - @{ModuleName = 'Az.HealthcareApis'; RequiredVersion = '1.0.1'; }, - @{ModuleName = 'Az.IotHub'; RequiredVersion = '2.2.0'; }, - @{ModuleName = 'Az.KeyVault'; RequiredVersion = '1.5.1'; }, - @{ModuleName = 'Az.LogicApp'; RequiredVersion = '1.3.2'; }, - @{ModuleName = 'Az.MachineLearning'; RequiredVersion = '1.1.3'; }, - @{ModuleName = 'Az.ManagedServices'; RequiredVersion = '1.0.2'; }, - @{ModuleName = 'Az.MarketplaceOrdering'; RequiredVersion = '1.0.2'; }, - @{ModuleName = 'Az.Media'; RequiredVersion = '1.1.1'; }, - @{ModuleName = 'Az.Monitor'; RequiredVersion = '1.6.0'; }, - @{ModuleName = 'Az.Network'; RequiredVersion = '2.3.1'; }, - @{ModuleName = 'Az.NotificationHubs'; RequiredVersion = '1.1.1'; }, - @{ModuleName = 'Az.OperationalInsights'; RequiredVersion = '1.3.4'; }, - @{ModuleName = 'Az.PolicyInsights'; RequiredVersion = '1.2.0'; }, - @{ModuleName = 'Az.PowerBIEmbedded'; RequiredVersion = '1.1.1'; }, - @{ModuleName = 'Az.PrivateDns'; RequiredVersion = '1.0.2'; }, - @{ModuleName = 'Az.RecoveryServices'; RequiredVersion = '2.7.0'; }, - @{ModuleName = 'Az.RedisCache'; RequiredVersion = '1.2.1'; }, - @{ModuleName = 'Az.Relay'; RequiredVersion = '1.0.3'; }, - @{ModuleName = 'Az.Resources'; RequiredVersion = '1.12.0'; }, - @{ModuleName = 'Az.ServiceBus'; RequiredVersion = '1.4.1'; }, - @{ModuleName = 'Az.ServiceFabric'; RequiredVersion = '2.0.1'; }, - @{ModuleName = 'Az.SignalR'; RequiredVersion = '1.1.1'; }, - @{ModuleName = 'Az.Sql'; RequiredVersion = '2.4.0'; }, - @{ModuleName = 'Az.SqlVirtualMachine'; RequiredVersion = '1.1.0'; }, - @{ModuleName = 'Az.Storage'; RequiredVersion = '1.13.0'; }, - @{ModuleName = 'Az.StorageSync'; RequiredVersion = '1.2.3'; }, - @{ModuleName = 'Az.StreamAnalytics'; RequiredVersion = '1.0.1'; }, - @{ModuleName = 'Az.TrafficManager'; RequiredVersion = '1.0.3'; }, - @{ModuleName = 'Az.Websites'; RequiredVersion = '1.7.0'; }) - -# Assemblies that must be loaded prior to importing this module -# RequiredAssemblies = @() - -# Script files (.ps1) that are run in the caller's environment prior to importing this module. -# ScriptsToProcess = @() - -# Type files (.ps1xml) to be loaded when importing this module -# TypesToProcess = @() - -# Format files (.ps1xml) to be loaded when importing this module -# FormatsToProcess = @() - -# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -# NestedModules = @() - -# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. -FunctionsToExport = @() - -# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. -CmdletsToExport = @() - -# Variables to export from this module -# VariablesToExport = @() - -# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. -AliasesToExport = @() - -# DSC resources to export from this module -# DscResourcesToExport = @() - -# List of all modules packaged with this module -# ModuleList = @() - -# List of all files packaged with this module -# FileList = @() - -# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. -PrivateData = @{ - - PSData = @{ - - # Tags applied to this module. These help with module discovery in online galleries. - Tags = 'Azure','ARM','ResourceManager','Linux','AzureAutomationNotSupported' - - # A URL to the license for this module. - LicenseUri = 'https://aka.ms/azps-license' - - # A URL to the main website for this project. - ProjectUri = 'https://github.com/Azure/azure-powershell' - - # A URL to an icon representing this module. - # IconUri = '' - - # ReleaseNotes of this module - ReleaseNotes = '3.6.0 - March 2020 -Az.Accounts -* Open Azure PowerShell survey page in ''Send-Feedback'' [#11020] -* Display Azure PowerShell survey URL in ''Resolve-Error'' [#11021] -* Added Az version in UserAgent - -Az.ApiManagement -* Added support for retrieving and configuring Custom Domain on the DeveloperPortal Endpoint [#11007] -* ''Export-AzApiManagementApi'' Added support for downloading Api Definition in Json format [#9987] -* ''Import-AzApiManagementApi'' Added support for importing OpenApi 3.0 definition from Json document -* ''New-AzApiManagementIdentityProvider'' and ''Set-AzApiManagementIdentityProvider'' Added support for configuring ''Signin Tenant'' for AAD B2C Provider [#9784] - -Az.DataLakeStore -* Added reference to System.Buffers explicitly in csproj and psd1. - -Az.IotHub -* Added support to manage devices in an Iot Hub. New Cmdlets are: - - ''Add-AzIotHubDevice'' - - ''Get-AzIotHubDevice'' - - ''Remove-AzIotHubDevice'' - - ''Set-AzIotHubDevice'' -* Added support to manage modules on a target Iot device in an Iot Hub. New Cmdlets are: - - ''Add-AzIotHubModule'' - - ''Get-AzIotHubModule'' - - ''Remove-AzIotHubModule'' - - ''Set-AzIotHubModule'' -* Added cmdlet to get the connection string of a target IoT device in an Iot Hub. -* Added cmdlet to get the connection string of a module on a target IoT device in an Iot Hub. -* Added support to get/set parent device of an IoT device. New Cmdlets are: - - ''Get-AzIotHubDeviceParent'' - - ''Set-AzIotHubDeviceParent'' -* Added support to manage device parent-child relationship. - -Az.Resources -* Fixed for null reference bug in ''Get-AzRoleAssignment'' -* Marked switch ''-Force'' and ''-PassThru'' optional in ''Remove-AzADGroup'' [#10849] -* Fixed issue that ''MailNickname'' doesn''t return in ''Remove-AzADGroup'' [#11167] -* Fixed issue that ''Remove-AzADGroup'' pipe operation doesn''t work [#11171] -* Fixed for null reference bug in GetAzureRoleAssignmentCommand -* Added breaking change attributes for upcoming changes to policy cmdlets -* Updated ''Get-AzResourceGroup'' to perform resource group tag filtering on server-side -* Extended Tag cmdlets to accept -ResourceId - - Get-AzTag -ResourceId - - New-AzTag -ResourceId - - Remove-AzTag -ResourceId -* Added new Tag cmdlet - - Update-AzTag -ResourceId -* Brought ScopedDeployment from SDK 3.3.0 - -Az.Sql -* Added PublicNetworkAccess to New-AzSqlServer and Set-AzSqlServer - -Az.Storage -* Supported AllowProtectedAppendWrite in ImmutabilityPolicy - - ''Set-AzRmStorageContainerImmutabilityPolicy'' -* Added breaking change warning message for AzureStorageTable type change in a future release - - ''New-AzStorageTable'' - - ''Get-AzStorageTable'' - -Az.Websites -* Added Tag parameter for ''New-AzAppServicePlan'' and ''Set-AzAppServicePlan'' -* Stop cmdlt execution if an exception is thrown when adding a custom domain to a website -* Added support to perform operations for App Services not in the same resource group as the App Service Plan -* Applied access restriction to WebApp/Function in different resource groups -* Fixed issue to set custom hostnames for WebAppSlots -' - - # Prerelease string of this module - # Prerelease = '' - - # Flag to indicate whether the module requires explicit user acceptance for install/update/save - # RequireLicenseAcceptance = $false - - # External dependent modules of this module - # ExternalModuleDependencies = @() - - } # End of PSData hashtable - - } # End of PrivateData hashtable - -# HelpInfo URI of this module -# HelpInfoURI = '' - -# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. -# DefaultCommandPrefix = '' - -} - + # Script module or binary module file associated with this manifest. + # RootModule = '' + + # Version number of this module. + ModuleVersion = '3.6.0' + + # Supported PSEditions + CompatiblePSEditions = 'Core', 'Desktop' + + # ID used to uniquely identify this module + GUID = 'd48d710e-85cb-46a1-990f-22dae76f6b5f' + + # Author of this module + Author = 'Microsoft Corporation' + + # Company or vendor of this module + CompanyName = 'Microsoft Corporation' + + # Copyright statement for this module + Copyright = 'Microsoft Corporation. All rights reserved.' + + # Description of the functionality provided by this module + Description = 'Microsoft Azure PowerShell - Cmdlets to manage resources in Azure. This module is compatible with WindowsPowerShell and PowerShell Core. + For more information about the Az module, please visit the following: https://docs.microsoft.com/en-us/powershell/azure/' + + # Minimum version of the PowerShell engine required by this module + PowerShellVersion = '5.1' + + # Name of the PowerShell host required by this module + # PowerShellHostName = '' + + # Minimum version of the PowerShell host required by this module + # PowerShellHostVersion = '' + + # Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only. + DotNetFrameworkVersion = '4.7.2' + + # Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. + # CLRVersion = '' + + # Processor architecture (None, X86, Amd64) required by this module + # ProcessorArchitecture = '' + + # Modules that must be imported into the global environment prior to importing this module + RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }, + @{ModuleName = 'Az.Advisor'; RequiredVersion = '1.1.1'; }, + @{ModuleName = 'Az.Aks'; RequiredVersion = '1.0.3'; }, + @{ModuleName = 'Az.AnalysisServices'; RequiredVersion = '1.1.2'; }, + @{ModuleName = 'Az.ApiManagement'; RequiredVersion = '1.4.0'; }, + @{ModuleName = 'Az.ApplicationInsights'; RequiredVersion = '1.0.3'; }, + @{ModuleName = 'Az.Automation'; RequiredVersion = '1.3.6'; }, + @{ModuleName = 'Az.Batch'; RequiredVersion = '2.0.2'; }, + @{ModuleName = 'Az.Billing'; RequiredVersion = '1.0.2'; }, + @{ModuleName = 'Az.Cdn'; RequiredVersion = '1.4.2'; }, + @{ModuleName = 'Az.CognitiveServices'; RequiredVersion = '1.2.3'; }, + @{ModuleName = 'Az.Compute'; RequiredVersion = '3.5.0'; }, + @{ModuleName = 'Az.ContainerInstance'; RequiredVersion = '1.0.3'; }, + @{ModuleName = 'Az.ContainerRegistry'; RequiredVersion = '1.1.1'; }, + @{ModuleName = 'Az.DataBoxEdge'; RequiredVersion = '1.1.0'; }, + @{ModuleName = 'Az.DataFactory'; RequiredVersion = '1.6.1'; }, + @{ModuleName = 'Az.DataLakeAnalytics'; RequiredVersion = '1.0.2'; }, + @{ModuleName = 'Az.DataLakeStore'; RequiredVersion = '1.2.7'; }, + @{ModuleName = 'Az.DeploymentManager'; RequiredVersion = '1.1.0'; }, + @{ModuleName = 'Az.DevTestLabs'; RequiredVersion = '1.0.2'; }, + @{ModuleName = 'Az.Dns'; RequiredVersion = '1.1.2'; }, + @{ModuleName = 'Az.EventGrid'; RequiredVersion = '1.2.3'; }, + @{ModuleName = 'Az.EventHub'; RequiredVersion = '1.4.3'; }, + @{ModuleName = 'Az.FrontDoor'; RequiredVersion = '1.4.0'; }, + @{ModuleName = 'Az.HDInsight'; RequiredVersion = '3.0.3'; }, + @{ModuleName = 'Az.HealthcareApis'; RequiredVersion = '1.0.1'; }, + @{ModuleName = 'Az.IotHub'; RequiredVersion = '2.2.0'; }, + @{ModuleName = 'Az.KeyVault'; RequiredVersion = '1.5.1'; }, + @{ModuleName = 'Az.LogicApp'; RequiredVersion = '1.3.2'; }, + @{ModuleName = 'Az.MachineLearning'; RequiredVersion = '1.1.3'; }, + @{ModuleName = 'Az.ManagedServices'; RequiredVersion = '1.0.2'; }, + @{ModuleName = 'Az.MarketplaceOrdering'; RequiredVersion = '1.0.2'; }, + @{ModuleName = 'Az.Media'; RequiredVersion = '1.1.1'; }, + @{ModuleName = 'Az.Monitor'; RequiredVersion = '1.6.1'; }, + @{ModuleName = 'Az.Network'; RequiredVersion = '2.3.2'; }, + @{ModuleName = 'Az.NotificationHubs'; RequiredVersion = '1.1.1'; }, + @{ModuleName = 'Az.OperationalInsights'; RequiredVersion = '1.3.4'; }, + @{ModuleName = 'Az.PolicyInsights'; RequiredVersion = '1.2.0'; }, + @{ModuleName = 'Az.PowerBIEmbedded'; RequiredVersion = '1.1.1'; }, + @{ModuleName = 'Az.PrivateDns'; RequiredVersion = '1.0.2'; }, + @{ModuleName = 'Az.RecoveryServices'; RequiredVersion = '2.7.0'; }, + @{ModuleName = 'Az.RedisCache'; RequiredVersion = '1.2.1'; }, + @{ModuleName = 'Az.Relay'; RequiredVersion = '1.0.3'; }, + @{ModuleName = 'Az.Resources'; RequiredVersion = '1.12.0'; }, + @{ModuleName = 'Az.ServiceBus'; RequiredVersion = '1.4.1'; }, + @{ModuleName = 'Az.ServiceFabric'; RequiredVersion = '2.0.1'; }, + @{ModuleName = 'Az.SignalR'; RequiredVersion = '1.1.1'; }, + @{ModuleName = 'Az.Sql'; RequiredVersion = '2.4.0'; }, + @{ModuleName = 'Az.SqlVirtualMachine'; RequiredVersion = '1.1.0'; }, + @{ModuleName = 'Az.Storage'; RequiredVersion = '1.13.0'; }, + @{ModuleName = 'Az.StorageSync'; RequiredVersion = '1.2.3'; }, + @{ModuleName = 'Az.StreamAnalytics'; RequiredVersion = '1.0.1'; }, + @{ModuleName = 'Az.TrafficManager'; RequiredVersion = '1.0.3'; }, + @{ModuleName = 'Az.Websites'; RequiredVersion = '1.7.0'; }) + + # Assemblies that must be loaded prior to importing this module + # RequiredAssemblies = @() + + # Script files (.ps1) that are run in the caller's environment prior to importing this module. + # ScriptsToProcess = @() + + # Type files (.ps1xml) to be loaded when importing this module + # TypesToProcess = @() + + # Format files (.ps1xml) to be loaded when importing this module + # FormatsToProcess = @() + + # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess + # NestedModules = @() + + # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. + FunctionsToExport = @() + + # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. + CmdletsToExport = @() + + # Variables to export from this module + # VariablesToExport = @() + + # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. + AliasesToExport = @() + + # DSC resources to export from this module + # DscResourcesToExport = @() + + # List of all modules packaged with this module + # ModuleList = @() + + # List of all files packaged with this module + # FileList = @() + + # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. + PrivateData = @{ + + PSData = @{ + + # Tags applied to this module. These help with module discovery in online galleries. + Tags = 'Azure','ARM','ResourceManager','Linux','AzureAutomationNotSupported' + + # A URL to the license for this module. + LicenseUri = 'https://aka.ms/azps-license' + + # A URL to the main website for this project. + ProjectUri = 'https://github.com/Azure/azure-powershell' + + # A URL to an icon representing this module. + # IconUri = '' + + # ReleaseNotes of this module + ReleaseNotes = '3.6.0 - March 2020 + Az.Accounts + * Open Azure PowerShell survey page in ''Send-Feedback'' [#11020] + * Display Azure PowerShell survey URL in ''Resolve-Error'' [#11021] + * Added Az version in UserAgent + Az.ApiManagement + * Added support for retrieving and configuring Custom Domain on the DeveloperPortal Endpoint [#11007] + * ''Export-AzApiManagementApi'' Added support for downloading Api Definition in Json format [#9987] + * ''Import-AzApiManagementApi'' Added support for importing OpenApi 3.0 definition from Json document + * ''New-AzApiManagementIdentityProvider'' and ''Set-AzApiManagementIdentityProvider'' Added support for configuring ''Signin Tenant'' for AAD B2C Provider [#9784] + Az.DataLakeStore + * Added reference to System.Buffers explicitly in csproj and psd1. + Az.IotHub + * Added support to manage devices in an Iot Hub. New Cmdlets are: + - ''Add-AzIotHubDevice'' + - ''Get-AzIotHubDevice'' + - ''Remove-AzIotHubDevice'' + - ''Set-AzIotHubDevice'' + * Added support to manage modules on a target Iot device in an Iot Hub. New Cmdlets are: + - ''Add-AzIotHubModule'' + - ''Get-AzIotHubModule'' + - ''Remove-AzIotHubModule'' + - ''Set-AzIotHubModule'' + * Added cmdlet to get the connection string of a target IoT device in an Iot Hub. + * Added cmdlet to get the connection string of a module on a target IoT device in an Iot Hub. + * Added support to get/set parent device of an IoT device. New Cmdlets are: + - ''Get-AzIotHubDeviceParent'' + - ''Set-AzIotHubDeviceParent'' + * Added support to manage device parent-child relationship. + Az.Monitor + * Fixed output value for ''Get-AzMetricDefinition'' [#9714] + Az.Network + * Updated Sql Management SDK. + Az.Resources + * Fixed for null reference bug in ''Get-AzRoleAssignment'' + * Marked switch ''-Force'' and ''-PassThru'' optional in ''Remove-AzADGroup'' [#10849] + * Fixed issue that ''MailNickname'' doesn''t return in ''Remove-AzADGroup'' [#11167] + * Fixed issue that ''Remove-AzADGroup'' pipe operation doesn''t work [#11171] + * Fixed for null reference bug in GetAzureRoleAssignmentCommand + * Added breaking change attributes for upcoming changes to policy cmdlets + * Updated ''Get-AzResourceGroup'' to perform resource group tag filtering on server-side + * Extended Tag cmdlets to accept -ResourceId + - Get-AzTag -ResourceId + - New-AzTag -ResourceId + - Remove-AzTag -ResourceId + * Added new Tag cmdlet + - Update-AzTag -ResourceId + * Brought ScopedDeployment from SDK 3.3.0 + Az.Sql + * Added PublicNetworkAccess to New-AzSqlServer and Set-AzSqlServer + Az.Storage + * Supported AllowProtectedAppendWrite in ImmutabilityPolicy + - ''Set-AzRmStorageContainerImmutabilityPolicy'' + * Added breaking change warning message for AzureStorageTable type change in a future release + - ''New-AzStorageTable'' + - ''Get-AzStorageTable'' + Az.Websites + * Added Tag parameter for ''New-AzAppServicePlan'' and ''Set-AzAppServicePlan'' + * Stop cmdlt execution if an exception is thrown when adding a custom domain to a website + * Added support to perform operations for App Services not in the same resource group as the App Service Plan + * Applied access restriction to WebApp/Function in different resource groups + * Fixed issue to set custom hostnames for WebAppSlots + ' + + # Prerelease string of this module + # Prerelease = '' + + # Flag to indicate whether the module requires explicit user acceptance for install/update/save + # RequireLicenseAcceptance = $false + + # External dependent modules of this module + # ExternalModuleDependencies = @() + + } # End of PSData hashtable + + } # End of PrivateData hashtable + + # HelpInfo URI of this module + # HelpInfoURI = '' + + # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. + # DefaultCommandPrefix = '' + + } \ No newline at end of file diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Monitor.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Monitor.dll.json index 833ee6ffec19..714d2aeeabe2 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Monitor.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Monitor.dll.json @@ -14,7 +14,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Action": "Microsoft.Azure.Management.Monitor.Models.Action", "Schedule": "Microsoft.Azure.Management.Monitor.Models.Schedule", @@ -460,7 +460,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AznsAction": "Microsoft.Azure.Management.Monitor.Models.AzNsActionGroup", "Trigger": "Microsoft.Azure.Management.Monitor.Models.TriggerCondition", @@ -526,7 +526,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAznsAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAznsAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAznsAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ActionGroup": "System.Collections.Generic.IList`1[System.String]", "EmailSubject": "System.String", @@ -621,7 +621,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleTriggerCondition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleTriggerCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleTriggerCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MetricTrigger": "Microsoft.Azure.Management.Monitor.Models.LogMetricTrigger", "Threshold": "System.Double", @@ -724,7 +724,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAznsAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAznsAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAznsAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ActionGroup": "System.Collections.Generic.IList`1[System.String]", "EmailSubject": "System.String", @@ -837,7 +837,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleTriggerCondition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleTriggerCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleTriggerCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MetricTrigger": "Microsoft.Azure.Management.Monitor.Models.LogMetricTrigger", "Threshold": "System.Double", @@ -958,7 +958,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAznsAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAznsAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAznsAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ActionGroup": "System.Collections.Generic.IList`1[System.String]", "EmailSubject": "System.String", @@ -1234,7 +1234,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Action": "Microsoft.Azure.Management.Monitor.Models.Action", "Schedule": "Microsoft.Azure.Management.Monitor.Models.Schedule", @@ -1308,7 +1308,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AuthorizedResources": "System.Collections.Generic.IList`1[System.String]", "Query": "System.String", @@ -1373,7 +1373,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrequencyInMinutes": "System.Int32", "TimeWindowInMinutes": "System.Int32" @@ -1436,7 +1436,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AznsAction": "Microsoft.Azure.Management.Monitor.Models.AzNsActionGroup", "Trigger": "Microsoft.Azure.Management.Monitor.Models.TriggerCondition", @@ -1648,7 +1648,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AuthorizedResources": "System.Collections.Generic.IList`1[System.String]", "Query": "System.String", @@ -1719,7 +1719,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrequencyInMinutes": "System.Int32", "TimeWindowInMinutes": "System.Int32" @@ -1788,7 +1788,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AznsAction": "Microsoft.Azure.Management.Monitor.Models.AzNsActionGroup", "Trigger": "Microsoft.Azure.Management.Monitor.Models.TriggerCondition", @@ -2054,7 +2054,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleLogMetricTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleLogMetricTrigger, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleLogMetricTrigger, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Threshold": "System.Nullable`1[System.Double]", "ThresholdOperator": "System.String", @@ -2373,7 +2373,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrequencyInMinutes": "System.Int32", "TimeWindowInMinutes": "System.Int32" @@ -2611,7 +2611,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AuthorizedResources": "System.Collections.Generic.IList`1[System.String]", "Query": "System.String", @@ -2935,7 +2935,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleTriggerCondition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleTriggerCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleTriggerCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MetricTrigger": "Microsoft.Azure.Management.Monitor.Models.LogMetricTrigger", "Threshold": "System.Double", @@ -3036,7 +3036,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleLogMetricTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleLogMetricTrigger, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleLogMetricTrigger, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Threshold": "System.Nullable`1[System.Double]", "ThresholdOperator": "System.String", @@ -3183,7 +3183,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleLogMetricTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleLogMetricTrigger, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleLogMetricTrigger, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Threshold": "System.Nullable`1[System.Double]", "ThresholdOperator": "System.String", @@ -3319,7 +3319,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Action": "Microsoft.Azure.Management.Monitor.Models.Action", "Schedule": "Microsoft.Azure.Management.Monitor.Models.Schedule", @@ -3503,7 +3503,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Action": "Microsoft.Azure.Management.Monitor.Models.Action", "Schedule": "Microsoft.Azure.Management.Monitor.Models.Schedule", @@ -3933,7 +3933,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Action": "Microsoft.Azure.Management.Monitor.Models.Action", "Schedule": "Microsoft.Azure.Management.Monitor.Models.Schedule", @@ -4007,7 +4007,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Action": "Microsoft.Azure.Management.Monitor.Models.Action", "Schedule": "Microsoft.Azure.Management.Monitor.Models.Schedule", @@ -4098,7 +4098,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AuthorizedResources": "System.Collections.Generic.IList`1[System.String]", "Query": "System.String", @@ -4163,7 +4163,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrequencyInMinutes": "System.Int32", "TimeWindowInMinutes": "System.Int32" @@ -4226,7 +4226,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AznsAction": "Microsoft.Azure.Management.Monitor.Models.AzNsActionGroup", "Trigger": "Microsoft.Azure.Management.Monitor.Models.TriggerCondition", @@ -4456,7 +4456,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Action": "Microsoft.Azure.Management.Monitor.Models.Action", "Schedule": "Microsoft.Azure.Management.Monitor.Models.Schedule", @@ -4535,7 +4535,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AuthorizedResources": "System.Collections.Generic.IList`1[System.String]", "Query": "System.String", @@ -4606,7 +4606,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrequencyInMinutes": "System.Int32", "TimeWindowInMinutes": "System.Int32" @@ -4675,7 +4675,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AznsAction": "Microsoft.Azure.Management.Monitor.Models.AzNsActionGroup", "Trigger": "Microsoft.Azure.Management.Monitor.Models.TriggerCondition", @@ -4934,7 +4934,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AuthorizedResources": "System.Collections.Generic.IList`1[System.String]", "Query": "System.String", @@ -5005,7 +5005,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrequencyInMinutes": "System.Int32", "TimeWindowInMinutes": "System.Int32" @@ -5074,7 +5074,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AznsAction": "Microsoft.Azure.Management.Monitor.Models.AzNsActionGroup", "Trigger": "Microsoft.Azure.Management.Monitor.Models.TriggerCondition", @@ -5309,7 +5309,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AuthorizedResources": "System.Collections.Generic.IList`1[System.String]", "Query": "System.String", @@ -5380,7 +5380,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrequencyInMinutes": "System.Int32", "TimeWindowInMinutes": "System.Int32" @@ -5449,7 +5449,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AznsAction": "Microsoft.Azure.Management.Monitor.Models.AzNsActionGroup", "Trigger": "Microsoft.Azure.Management.Monitor.Models.TriggerCondition", @@ -5807,7 +5807,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Action": "Microsoft.Azure.Management.Monitor.Models.Action", "Schedule": "Microsoft.Azure.Management.Monitor.Models.Schedule", @@ -5881,7 +5881,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Action": "Microsoft.Azure.Management.Monitor.Models.Action", "Schedule": "Microsoft.Azure.Management.Monitor.Models.Schedule", @@ -6065,7 +6065,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Action": "Microsoft.Azure.Management.Monitor.Models.Action", "Schedule": "Microsoft.Azure.Management.Monitor.Models.Schedule", @@ -6471,7 +6471,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetric", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetric, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetric, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "Microsoft.Azure.Management.Monitor.Models.LocalizableString", "Unit": "Microsoft.Azure.Management.Monitor.Models.Unit", @@ -7402,7 +7402,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDefinition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDefinition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "Microsoft.Azure.Management.Monitor.Models.LocalizableString", "Dimensions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.LocalizableString]", @@ -7967,7 +7967,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RetentionPolicy": "Microsoft.Azure.Management.Monitor.Management.Models.RetentionPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -8393,7 +8393,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfileCollection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfileCollection, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfileCollection, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Item": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile", "Count": "System.Int32", @@ -9341,7 +9341,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSServiceDiagnosticSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSServiceDiagnosticSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSServiceDiagnosticSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Logs": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.LogSettings]", @@ -9813,7 +9813,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSServiceDiagnosticSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSServiceDiagnosticSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSServiceDiagnosticSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Logs": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.LogSettings]", @@ -9883,7 +9883,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSServiceDiagnosticSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSServiceDiagnosticSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSServiceDiagnosticSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Logs": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.LogSettings]", @@ -10253,7 +10253,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSServiceDiagnosticSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSServiceDiagnosticSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSServiceDiagnosticSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Logs": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.LogSettings]", @@ -10813,7 +10813,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAddAutoscaleSettingOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAddAutoscaleSettingOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAddAutoscaleSettingOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SettingSpec": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleSettingResource", "StatusCode": "System.Net.HttpStatusCode", @@ -10870,7 +10870,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAutoscaleSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAutoscaleSetting, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAutoscaleSetting, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Notifications": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification]", @@ -11014,7 +11014,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -11052,7 +11052,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -11113,7 +11113,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAutoscaleSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAutoscaleSetting, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAutoscaleSetting, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Notifications": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification]", @@ -11239,7 +11239,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -11265,7 +11265,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -11433,7 +11433,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -11483,7 +11483,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -11604,7 +11604,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventData", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventData, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventData, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Claims": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDictionaryElement", "Properties": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDictionaryElement", @@ -12040,7 +12040,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAutoscaleSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAutoscaleSetting, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAutoscaleSetting, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Notifications": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification]", @@ -12375,7 +12375,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Email": "Microsoft.Azure.Management.Monitor.Management.Models.EmailNotification", "Webhooks": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification]", @@ -12440,7 +12440,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification[]", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification", "GenericTypeArguments": [], @@ -12551,7 +12551,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification[]", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification", "GenericTypeArguments": [], @@ -12698,7 +12698,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Recurrence": "Microsoft.Azure.Management.Monitor.Management.Models.Recurrence", "Capacity": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleCapacity", @@ -12896,7 +12896,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.RecurrenceFrequency", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RecurrenceFrequency, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RecurrenceFrequency, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13077,7 +13077,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -13232,7 +13232,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -13470,7 +13470,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -13636,7 +13636,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.RecurrenceFrequency", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RecurrenceFrequency, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RecurrenceFrequency, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13847,7 +13847,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -13968,7 +13968,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MetricTrigger": "Microsoft.Azure.Management.Monitor.Management.Models.MetricTrigger", "ScaleAction": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleAction" @@ -14087,7 +14087,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.ComparisonOperationType", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ComparisonOperationType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ComparisonOperationType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14190,7 +14190,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.MetricStatisticType", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.MetricStatisticType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.MetricStatisticType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14311,7 +14311,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationType", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14468,7 +14468,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleDirection", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleDirection, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleDirection, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14571,7 +14571,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleType", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14779,7 +14779,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.ComparisonOperationType", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ComparisonOperationType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ComparisonOperationType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14888,7 +14888,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.MetricStatisticType", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.MetricStatisticType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.MetricStatisticType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15021,7 +15021,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationType", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15202,7 +15202,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleDirection", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleDirection, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleDirection, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15311,7 +15311,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleType", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15495,7 +15495,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "ServiceUri": "System.String" @@ -16009,7 +16009,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAddAlertRuleOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAddAlertRuleOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAddAlertRuleOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AlertRule": "Microsoft.Azure.Management.Monitor.Management.Models.AlertRuleResource", "StatusCode": "System.Net.HttpStatusCode", @@ -16082,7 +16082,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.ConditionOperator", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ConditionOperator, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ConditionOperator, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16239,7 +16239,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationOperator]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationOperator, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationOperator, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -16351,7 +16351,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.RuleAction]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.RuleAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.RuleAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -16434,7 +16434,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.ConditionOperator", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ConditionOperator, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ConditionOperator, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16615,7 +16615,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationOperator]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationOperator, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationOperator, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -16763,7 +16763,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.RuleAction]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.RuleAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.RuleAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -16840,7 +16840,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricAlertRuleV2", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricAlertRuleV2, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricAlertRuleV2, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Actions": "Microsoft.Azure.Management.Monitor.Models.ActivityLogAlertActionGroup[]", "Criteria": "Microsoft.Azure.Management.Monitor.Models.MetricAlertCriteria", @@ -17072,7 +17072,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -17325,7 +17325,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -17593,7 +17593,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -17887,7 +17887,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -18179,7 +18179,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -18497,7 +18497,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -18841,7 +18841,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -19183,7 +19183,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -19332,7 +19332,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAddAlertRuleOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAddAlertRuleOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAddAlertRuleOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AlertRule": "Microsoft.Azure.Management.Monitor.Management.Models.AlertRuleResource", "StatusCode": "System.Net.HttpStatusCode", @@ -19569,7 +19569,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.RuleAction]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.RuleAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.RuleAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -19870,7 +19870,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.RuleAction]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.RuleAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.RuleAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -19947,7 +19947,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventData", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventData, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventData, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Claims": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDictionaryElement", "Properties": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDictionaryElement", @@ -20383,7 +20383,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAlertRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAlertRule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAlertRule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Condition": "Microsoft.Azure.Management.Monitor.Management.Models.RuleCondition", "IsEnabled": "System.Boolean", @@ -20950,7 +20950,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricAlertRuleV2", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricAlertRuleV2, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricAlertRuleV2, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Actions": "Microsoft.Azure.Management.Monitor.Models.ActivityLogAlertActionGroup[]", "Criteria": "Microsoft.Azure.Management.Monitor.Models.MetricAlertCriteria", @@ -21408,7 +21408,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.RuleEmailAction", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RuleEmailAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RuleEmailAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomEmails": "System.Collections.Generic.IList`1[System.String]", "SendToServiceOwners": "System.Nullable`1[System.Boolean]" @@ -21646,7 +21646,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.RuleWebhookAction", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RuleWebhookAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RuleWebhookAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "ServiceUri": "System.String" @@ -21884,7 +21884,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricCriteria", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CriterionType": "Microsoft.Azure.Commands.Insights.OutputClasses.CriterionType", "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", @@ -21951,7 +21951,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDynamicMetricCriteria", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDynamicMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDynamicMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CriterionType": "Microsoft.Azure.Commands.Insights.OutputClasses.CriterionType", "FailingPeriods": "Microsoft.Azure.Management.Monitor.Models.DynamicThresholdFailingPeriods", @@ -22078,7 +22078,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension", "GenericTypeArguments": [], @@ -22445,7 +22445,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension", "GenericTypeArguments": [], @@ -22609,7 +22609,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension", "GenericTypeArguments": [], @@ -22797,7 +22797,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension", "GenericTypeArguments": [], @@ -22920,7 +22920,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IncludeValues": "System.Collections.Generic.IList`1[System.String]", "ExcludeValues": "System.Collections.Generic.IList`1[System.String]", @@ -23557,7 +23557,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricAlertRuleV2", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricAlertRuleV2, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricAlertRuleV2, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Actions": "Microsoft.Azure.Management.Monitor.Models.ActivityLogAlertActionGroup[]", "Criteria": "Microsoft.Azure.Management.Monitor.Models.MetricAlertCriteria", @@ -23971,7 +23971,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricAlertRuleV2", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricAlertRuleV2, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricAlertRuleV2, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Actions": "Microsoft.Azure.Management.Monitor.Models.ActivityLogAlertActionGroup[]", "Criteria": "Microsoft.Azure.Management.Monitor.Models.MetricAlertCriteria", @@ -24247,7 +24247,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventData", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventData, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventData, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Claims": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDictionaryElement", "Properties": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDictionaryElement", @@ -25789,7 +25789,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList", "Condition": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition", @@ -25897,7 +25897,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList", "Condition": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition", @@ -26117,7 +26117,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList", "Condition": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition", @@ -26357,7 +26357,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList", "Condition": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition", @@ -26465,7 +26465,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList", "Condition": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition", @@ -26685,7 +26685,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList", "Condition": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition", @@ -26925,7 +26925,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList", "Condition": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition", @@ -27283,7 +27283,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "WebhookProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "ActionGroupId": "System.String" @@ -27532,7 +27532,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Field": "System.String", "Equals": "System.String" @@ -27865,7 +27865,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList", "Condition": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition", @@ -28085,7 +28085,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList", "Condition": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition", @@ -28325,7 +28325,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList", "Condition": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition", @@ -28471,7 +28471,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -28491,7 +28491,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -28568,7 +28568,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList", "Condition": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition", @@ -28794,7 +28794,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -28820,7 +28820,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -29015,7 +29015,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -29041,7 +29041,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -29236,7 +29236,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -29262,7 +29262,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -29339,7 +29339,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList", "Condition": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition", @@ -29511,7 +29511,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -29877,7 +29877,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String" }, @@ -32638,7 +32638,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -32916,7 +32916,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -33096,7 +33096,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -33230,7 +33230,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -33307,7 +33307,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -33497,7 +33497,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -33642,7 +33642,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -33862,7 +33862,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -35556,7 +35556,7 @@ "Microsoft.Azure.Management.Monitor.Management.Models.RetentionPolicy": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.RetentionPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RetentionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RetentionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "Days": "System.Int32" @@ -35675,7 +35675,7 @@ "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RetentionPolicy": "Microsoft.Azure.Management.Monitor.Management.Models.RetentionPolicy", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -35738,7 +35738,7 @@ "System.Collections.ObjectModel.ReadOnlyCollection`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile]": { "Namespace": "System.Collections.ObjectModel", "Name": "System.Collections.ObjectModel.ReadOnlyCollection`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile]", - "AssemblyQualifiedName": "System.Collections.ObjectModel.ReadOnlyCollection`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.ObjectModel.ReadOnlyCollection`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -35772,7 +35772,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -35784,7 +35784,7 @@ "System.Collections.Generic.List`1+Enumerator[Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1+Enumerator[Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1+Enumerator[[Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1+Enumerator[[Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -35796,7 +35796,7 @@ "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile[]": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile", "GenericTypeArguments": [], @@ -35816,7 +35816,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.LogSettings]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.LogSettings]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Management.Models.LogSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Management.Models.LogSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -35828,7 +35828,7 @@ "Microsoft.Azure.Management.Monitor.Management.Models.LogSettings": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.LogSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.LogSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.LogSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RetentionPolicy": "Microsoft.Azure.Management.Monitor.Management.Models.RetentionPolicy", "Enabled": "System.Boolean", @@ -35884,7 +35884,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.MetricSettings]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.MetricSettings]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Management.Models.MetricSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Management.Models.MetricSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -35896,7 +35896,7 @@ "Microsoft.Azure.Management.Monitor.Management.Models.MetricSettings": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.MetricSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.MetricSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.MetricSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RetentionPolicy": "Microsoft.Azure.Management.Monitor.Management.Models.RetentionPolicy", "Enabled": "System.Boolean", @@ -36120,7 +36120,7 @@ "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleSettingResource": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleSettingResource", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleSettingResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleSettingResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Notifications": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification]", @@ -36183,7 +36183,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -36195,7 +36195,7 @@ "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Email": "Microsoft.Azure.Management.Monitor.Management.Models.EmailNotification", "Webhooks": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification]", @@ -36251,7 +36251,7 @@ "Microsoft.Azure.Management.Monitor.Management.Models.EmailNotification": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.EmailNotification", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.EmailNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.EmailNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomEmails": "System.Collections.Generic.IList`1[System.String]", "SendToSubscriptionCoAdministrators": "System.Nullable`1[System.Boolean]", @@ -36371,7 +36371,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -36383,7 +36383,7 @@ "Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "ServiceUri": "System.String" @@ -36509,7 +36509,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -36521,7 +36521,7 @@ "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Recurrence": "Microsoft.Azure.Management.Monitor.Management.Models.Recurrence", "Capacity": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleCapacity", @@ -36584,7 +36584,7 @@ "Microsoft.Azure.Management.Monitor.Management.Models.Recurrence": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.Recurrence", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.Recurrence, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.Recurrence, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Frequency": "Microsoft.Azure.Management.Monitor.Management.Models.RecurrenceFrequency", "Schedule": "Microsoft.Azure.Management.Monitor.Management.Models.RecurrentSchedule" @@ -36644,7 +36644,7 @@ "Microsoft.Azure.Management.Monitor.Management.Models.RecurrenceFrequency": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.RecurrenceFrequency", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RecurrenceFrequency, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RecurrenceFrequency, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -36739,7 +36739,7 @@ "Microsoft.Azure.Management.Monitor.Management.Models.RecurrentSchedule": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.RecurrentSchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RecurrentSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RecurrentSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Hours": "System.Collections.Generic.IList`1[System.Nullable`1[System.Int32]]", "Minutes": "System.Collections.Generic.IList`1[System.Nullable`1[System.Int32]]", @@ -36982,7 +36982,7 @@ "Microsoft.Azure.Management.Monitor.Management.Models.ScaleCapacity": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleCapacity", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleCapacity, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleCapacity, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Minimum": "System.String", "Maximum": "System.String", @@ -37043,7 +37043,7 @@ "Microsoft.Azure.Management.Monitor.Management.Models.TimeWindow": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.TimeWindow", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.TimeWindow, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.TimeWindow, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Start": "System.DateTime", "End": "System.DateTime", @@ -37306,7 +37306,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -37318,7 +37318,7 @@ "Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MetricTrigger": "Microsoft.Azure.Management.Monitor.Management.Models.MetricTrigger", "ScaleAction": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleAction" @@ -37392,7 +37392,7 @@ "Microsoft.Azure.Management.Monitor.Management.Models.MetricTrigger": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.MetricTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.MetricTrigger, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.MetricTrigger, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OperatorProperty": "Microsoft.Azure.Management.Monitor.Management.Models.ComparisonOperationType", "Statistic": "Microsoft.Azure.Management.Monitor.Management.Models.MetricStatisticType", @@ -37458,7 +37458,7 @@ "Microsoft.Azure.Management.Monitor.Management.Models.ComparisonOperationType": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.ComparisonOperationType", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ComparisonOperationType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ComparisonOperationType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -37553,7 +37553,7 @@ "Microsoft.Azure.Management.Monitor.Management.Models.MetricStatisticType": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.MetricStatisticType", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.MetricStatisticType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.MetricStatisticType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -37648,7 +37648,7 @@ "Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationType": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationType", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -38028,7 +38028,7 @@ "Microsoft.Azure.Management.Monitor.Management.Models.ScaleAction": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleAction", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Direction": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleDirection", "Type": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleType", @@ -38090,7 +38090,7 @@ "Microsoft.Azure.Management.Monitor.Management.Models.ScaleDirection": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleDirection", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleDirection, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleDirection, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -38185,7 +38185,7 @@ "Microsoft.Azure.Management.Monitor.Management.Models.ScaleType": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleType", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -38877,7 +38877,7 @@ "Microsoft.Azure.Commands.Insights.OutputClasses.PSDictionaryElement": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDictionaryElement", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDictionaryElement, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDictionaryElement, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Content": "System.Collections.Generic.IDictionary`2[System.String,System.String]" }, @@ -38936,7 +38936,7 @@ "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventDataAuthorization": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventDataAuthorization", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventDataAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventDataAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Scope": "System.String", "Action": "System.String", @@ -38983,7 +38983,7 @@ "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventDataHttpRequest": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventDataHttpRequest", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventDataHttpRequest, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventDataHttpRequest, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClientId": "System.String", "Method": "System.String", @@ -39270,7 +39270,7 @@ "Microsoft.Azure.Management.Monitor.Management.Models.AlertRuleResource": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.AlertRuleResource", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.AlertRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.AlertRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Condition": "Microsoft.Azure.Management.Monitor.Management.Models.RuleCondition", "IsEnabled": "System.Boolean", @@ -39339,7 +39339,7 @@ "Microsoft.Azure.Management.Monitor.Management.Models.RuleCondition": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.RuleCondition", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DataSource": "Microsoft.Azure.Management.Monitor.Management.Models.RuleDataSource" }, @@ -39393,7 +39393,7 @@ "Microsoft.Azure.Management.Monitor.Management.Models.RuleDataSource": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.RuleDataSource", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RuleDataSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RuleDataSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceUri": "System.String" }, @@ -39555,7 +39555,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.RuleAction]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.RuleAction]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Management.Models.RuleAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Management.Models.RuleAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -39567,7 +39567,7 @@ "Microsoft.Azure.Management.Monitor.Management.Models.RuleAction": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.RuleAction", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RuleAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RuleAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -39663,7 +39663,7 @@ "Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationOperator": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationOperator", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationOperator, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationOperator, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -39909,7 +39909,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -39921,7 +39921,7 @@ "Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CriterionType": "Microsoft.Azure.Commands.Insights.OutputClasses.CriterionType" }, @@ -39933,7 +39933,7 @@ "Microsoft.Azure.Commands.Insights.OutputClasses.CriterionType": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.CriterionType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.CriterionType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.CriterionType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -40244,7 +40244,7 @@ "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IncludeValues": "System.Collections.Generic.IList`1[System.String]", "ExcludeValues": "System.Collections.Generic.IList`1[System.String]", @@ -40303,7 +40303,7 @@ "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ActionGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup]" }, @@ -40357,7 +40357,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -40369,7 +40369,7 @@ "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "WebhookProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "ActionGroupId": "System.String" @@ -40441,7 +40441,7 @@ "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllOf": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition]" }, @@ -40495,7 +40495,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -40507,7 +40507,7 @@ "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Field": "System.String", "Equals": "System.String" @@ -40756,7 +40756,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSArmRoleReceiver]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSArmRoleReceiver]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSArmRoleReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSArmRoleReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -40768,7 +40768,7 @@ "Microsoft.Azure.Commands.Insights.OutputClasses.PSArmRoleReceiver": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSArmRoleReceiver", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSArmRoleReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSArmRoleReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UseCommonAlertSchema": "System.Boolean", "RoleId": "System.String", @@ -40824,7 +40824,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSAutomationRunbookReceiver]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSAutomationRunbookReceiver]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSAutomationRunbookReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSAutomationRunbookReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -40836,7 +40836,7 @@ "Microsoft.Azure.Commands.Insights.OutputClasses.PSAutomationRunbookReceiver": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAutomationRunbookReceiver", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAutomationRunbookReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAutomationRunbookReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsGlobalRunbook": "System.Boolean", "UseCommonAlertSchema": "System.Boolean", @@ -40896,7 +40896,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureAppPushReceiver]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureAppPushReceiver]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureAppPushReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureAppPushReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -40908,7 +40908,7 @@ "Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureAppPushReceiver": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureAppPushReceiver", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureAppPushReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureAppPushReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EmailAddress": "System.String", "Name": "System.String" @@ -40963,7 +40963,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureFunctionReceiver]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureFunctionReceiver]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureFunctionReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureFunctionReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -40975,7 +40975,7 @@ "Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureFunctionReceiver": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureFunctionReceiver", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureFunctionReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureFunctionReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UseCommonAlertSchema": "System.Boolean", "FunctionAppResourceId": "System.String", @@ -41033,7 +41033,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSEmailReceiver]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSEmailReceiver]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSEmailReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSEmailReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -41045,7 +41045,7 @@ "Microsoft.Azure.Commands.Insights.OutputClasses.PSEmailReceiver": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEmailReceiver", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEmailReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEmailReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UseCommonAlertSchema": "System.Boolean", "Status": "System.Nullable`1[Microsoft.Azure.Management.Monitor.Management.Models.ReceiverStatus]", @@ -41102,7 +41102,7 @@ "System.Nullable`1[Microsoft.Azure.Management.Monitor.Management.Models.ReceiverStatus]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Management.Monitor.Management.Models.ReceiverStatus]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Monitor.Management.Models.ReceiverStatus, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Monitor.Management.Models.ReceiverStatus, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -41114,7 +41114,7 @@ "Microsoft.Azure.Management.Monitor.Management.Models.ReceiverStatus": { "Namespace": "Microsoft.Azure.Management.Monitor.Management.Models", "Name": "Microsoft.Azure.Management.Monitor.Management.Models.ReceiverStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ReceiverStatus, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ReceiverStatus, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -41209,7 +41209,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSItsmReceiver]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSItsmReceiver]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSItsmReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSItsmReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -41221,7 +41221,7 @@ "Microsoft.Azure.Commands.Insights.OutputClasses.PSItsmReceiver": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSItsmReceiver", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSItsmReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSItsmReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "WorkspaceId": "System.String", "ConnectionId": "System.String", @@ -41279,7 +41279,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSLogicAppReceiver]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSLogicAppReceiver]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSLogicAppReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSLogicAppReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -41291,7 +41291,7 @@ "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogicAppReceiver": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogicAppReceiver", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogicAppReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogicAppReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UseCommonAlertSchema": "System.Boolean", "ResourceId": "System.String", @@ -41348,7 +41348,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSSmsReceiver]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSSmsReceiver]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSSmsReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSSmsReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -41360,7 +41360,7 @@ "Microsoft.Azure.Commands.Insights.OutputClasses.PSSmsReceiver": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSSmsReceiver", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSSmsReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSSmsReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Status": "System.Nullable`1[Microsoft.Azure.Management.Monitor.Management.Models.ReceiverStatus]", "CountryCode": "System.String", @@ -41417,7 +41417,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSVoiceReceiver]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSVoiceReceiver]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSVoiceReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSVoiceReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -41429,7 +41429,7 @@ "Microsoft.Azure.Commands.Insights.OutputClasses.PSVoiceReceiver": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSVoiceReceiver", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSVoiceReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSVoiceReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CountryCode": "System.String", "PhoneNumber": "System.String", @@ -41485,7 +41485,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSWebhookReceiver]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSWebhookReceiver]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSWebhookReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSWebhookReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -41497,7 +41497,7 @@ "Microsoft.Azure.Commands.Insights.OutputClasses.PSWebhookReceiver": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSWebhookReceiver", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSWebhookReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSWebhookReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UseCommonAlertSchema": "System.Boolean", "UseAadAuth": "System.Boolean", @@ -41557,7 +41557,7 @@ "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase": { "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses", "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String" }, diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Network.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Network.dll.json index 8097fb0151c1..fc586b70d91d 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Network.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Network.dll.json @@ -14,7 +14,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -116,7 +116,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -292,7 +292,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -498,7 +498,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Data": "System.String", "ProvisioningState": "System.String", @@ -574,7 +574,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -738,7 +738,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -896,7 +896,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Data": "System.String", "ProvisioningState": "System.String", @@ -1128,7 +1128,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -1248,7 +1248,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -1412,7 +1412,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -1570,7 +1570,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -1672,7 +1672,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -1848,7 +1848,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -2054,7 +2054,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MinCapacity": "System.Int32", "MaxCapacity": "System.Nullable`1[System.Int32]" @@ -2108,7 +2108,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -2248,7 +2248,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -2406,7 +2406,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MinCapacity": "System.Int32", "MaxCapacity": "System.Nullable`1[System.Int32]" @@ -2638,7 +2638,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -2740,7 +2740,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -2898,7 +2898,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -3080,7 +3080,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -3182,7 +3182,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -3360,7 +3360,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -3568,7 +3568,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -3670,7 +3670,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -3864,7 +3864,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -4094,7 +4094,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -4183,7 +4183,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -4347,7 +4347,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -4505,7 +4505,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -4792,7 +4792,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -4881,7 +4881,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -5045,7 +5045,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -5203,7 +5203,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -5305,7 +5305,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -5499,7 +5499,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -5729,7 +5729,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -5831,7 +5831,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -6028,7 +6028,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "DrainTimeoutInSec": "System.Int32" @@ -6099,7 +6099,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", "PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]", @@ -6166,7 +6166,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate", "GenericTypeArguments": [], @@ -6184,7 +6184,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate", "GenericTypeArguments": [], @@ -6313,7 +6313,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -6546,7 +6546,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "DrainTimeoutInSec": "System.Int32" @@ -6629,7 +6629,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", "PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]", @@ -6702,7 +6702,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate", "GenericTypeArguments": [], @@ -6726,7 +6726,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate", "GenericTypeArguments": [], @@ -6899,7 +6899,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -7004,7 +7004,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -7168,7 +7168,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -7328,7 +7328,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -7511,7 +7511,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "DrainTimeoutInSec": "System.Int32" @@ -7582,7 +7582,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", "PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]", @@ -7649,7 +7649,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate", "GenericTypeArguments": [], @@ -7667,7 +7667,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate", "GenericTypeArguments": [], @@ -7922,7 +7922,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "DrainTimeoutInSec": "System.Int32" @@ -8005,7 +8005,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", "PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]", @@ -8078,7 +8078,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate", "GenericTypeArguments": [], @@ -8102,7 +8102,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate", "GenericTypeArguments": [], @@ -8275,7 +8275,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -8395,7 +8395,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -8559,7 +8559,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -8719,7 +8719,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -8821,7 +8821,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -9018,7 +9018,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "DrainTimeoutInSec": "System.Int32" @@ -9089,7 +9089,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", "PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]", @@ -9156,7 +9156,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate", "GenericTypeArguments": [], @@ -9174,7 +9174,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate", "GenericTypeArguments": [], @@ -9303,7 +9303,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -9536,7 +9536,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "DrainTimeoutInSec": "System.Int32" @@ -9619,7 +9619,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", "PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]", @@ -9692,7 +9692,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate", "GenericTypeArguments": [], @@ -9716,7 +9716,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate", "GenericTypeArguments": [], @@ -9889,7 +9889,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "DrainTimeoutInSec": "System.Int32" @@ -9943,7 +9943,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -10068,7 +10068,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -10211,7 +10211,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "DrainTimeoutInSec": "System.Int32" @@ -10439,7 +10439,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -10526,7 +10526,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -10651,7 +10651,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -10794,7 +10794,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -10881,7 +10881,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -11042,7 +11042,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -11233,7 +11233,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCode": "System.String", "CustomErrorPageUrl": "System.String" @@ -11287,7 +11287,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -11463,7 +11463,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -11669,7 +11669,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCode": "System.String", "CustomErrorPageUrl": "System.String" @@ -11723,7 +11723,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -11867,7 +11867,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -12041,7 +12041,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCode": "System.String", "CustomErrorPageUrl": "System.String" @@ -12113,7 +12113,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -12277,7 +12277,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -12435,7 +12435,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCode": "System.String", "CustomErrorPageUrl": "System.String" @@ -12507,7 +12507,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -12639,7 +12639,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -12765,7 +12765,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCode": "System.String", "CustomErrorPageUrl": "System.String" @@ -12993,7 +12993,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCode": "System.String", "CustomErrorPageUrl": "System.String" @@ -13065,7 +13065,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -13229,7 +13229,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -13387,7 +13387,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCode": "System.String", "CustomErrorPageUrl": "System.String" @@ -13459,7 +13459,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -13591,7 +13591,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -13717,7 +13717,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCode": "System.String", "CustomErrorPageUrl": "System.String" @@ -13771,7 +13771,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -13947,7 +13947,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -14153,7 +14153,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCode": "System.String", "CustomErrorPageUrl": "System.String" @@ -14207,7 +14207,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -14351,7 +14351,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -14525,7 +14525,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]", @@ -14588,7 +14588,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -14728,7 +14728,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -14886,7 +14886,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]", @@ -15028,7 +15028,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup", "GenericTypeArguments": [], @@ -15100,7 +15100,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion", "GenericTypeArguments": [], @@ -15260,7 +15260,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup", "GenericTypeArguments": [], @@ -15356,7 +15356,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion", "GenericTypeArguments": [], @@ -15431,7 +15431,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -15533,7 +15533,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -15713,7 +15713,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup", "GenericTypeArguments": [], @@ -15785,7 +15785,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion", "GenericTypeArguments": [], @@ -15842,7 +15842,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -16052,7 +16052,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup", "GenericTypeArguments": [], @@ -16148,7 +16148,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion", "GenericTypeArguments": [], @@ -16223,7 +16223,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Rules": "System.Collections.Generic.List`1[System.Int32]", "RuleGroupName": "System.String", @@ -16452,7 +16452,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MatchVariable": "System.String", "SelectorMatchOperator": "System.String", @@ -16723,7 +16723,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -16825,7 +16825,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -16980,7 +16980,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -17111,7 +17111,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -17226,7 +17226,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -17497,7 +17497,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -17696,7 +17696,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -17815,7 +17815,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -17897,7 +17897,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -18079,7 +18079,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -18160,7 +18160,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -18324,7 +18324,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -18482,7 +18482,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -18599,7 +18599,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -18730,7 +18730,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -19101,7 +19101,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -19220,7 +19220,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -19377,7 +19377,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -19497,7 +19497,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -19661,7 +19661,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -19819,7 +19819,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -19921,7 +19921,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -20076,7 +20076,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -20207,7 +20207,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -20322,7 +20322,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -20593,7 +20593,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -20792,7 +20792,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -20911,7 +20911,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -20993,7 +20993,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -21175,7 +21175,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -21277,7 +21277,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -21453,7 +21453,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -21659,7 +21659,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Port": "System.Int32", "ProvisioningState": "System.String", @@ -21735,7 +21735,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -21899,7 +21899,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -22057,7 +22057,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Port": "System.Int32", "ProvisioningState": "System.String", @@ -22289,7 +22289,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -22409,7 +22409,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -22573,7 +22573,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -22731,7 +22731,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -22833,7 +22833,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -23009,7 +23009,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -23215,7 +23215,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -23317,7 +23317,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -23454,7 +23454,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -23606,7 +23606,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -23805,7 +23805,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -23980,7 +23980,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -24099,7 +24099,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -24281,7 +24281,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "ProvisioningState": "System.String", @@ -24358,7 +24358,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -24522,7 +24522,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -24680,7 +24680,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "ProvisioningState": "System.String", @@ -24775,7 +24775,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -25087,7 +25087,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -25281,7 +25281,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -25401,7 +25401,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -25565,7 +25565,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -25723,7 +25723,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -25825,7 +25825,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -25962,7 +25962,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -26114,7 +26114,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -26313,7 +26313,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -26488,7 +26488,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -26607,7 +26607,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -26789,7 +26789,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableServerVariableAndRequestHeaderResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableServerVariableAndRequestHeaderResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableServerVariableAndRequestHeaderResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableServerVariable": "System.Collections.Generic.IList`1[System.String]", "AvailableRequestHeader": "System.Collections.Generic.IList`1[System.String]", @@ -26936,7 +26936,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableSslOptions", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableSslOptions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableSslOptions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PredefinedPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "AvailableCipherSuites": "System.Collections.Generic.List`1[System.String]", @@ -27097,7 +27097,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableWafRuleSetsResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableWafRuleSetsResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableWafRuleSetsResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Value": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet]", "ValueText": "System.String" @@ -27244,7 +27244,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealth", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool]", "BackendAddressPoolsText": "System.String" @@ -27678,7 +27678,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -27958,7 +27958,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPredefinedPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPredefinedPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPredefinedPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CipherSuites": "System.Collections.Generic.List`1[System.String]", "MinProtocolVersion": "System.String", @@ -28150,7 +28150,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -28252,7 +28252,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -28389,7 +28389,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -28469,7 +28469,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Port": "System.Int32", "ProvisioningState": "System.String", @@ -28562,7 +28562,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -28625,7 +28625,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Password": "System.Security.SecureString", "Data": "System.String", @@ -28763,7 +28763,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", "GenericTypeArguments": [], @@ -28820,7 +28820,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -29053,7 +29053,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", "GenericTypeArguments": [], @@ -29217,7 +29217,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -29450,7 +29450,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", "GenericTypeArguments": [], @@ -29518,7 +29518,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -29586,7 +29586,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Port": "System.Int32", "ProvisioningState": "System.String", @@ -29649,7 +29649,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -29718,7 +29718,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Password": "System.Security.SecureString", "Data": "System.String", @@ -29784,7 +29784,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -30017,7 +30017,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", "GenericTypeArguments": [], @@ -30092,7 +30092,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -30180,7 +30180,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -30344,7 +30344,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -30502,7 +30502,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -30608,7 +30608,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -30688,7 +30688,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Port": "System.Int32", "ProvisioningState": "System.String", @@ -30781,7 +30781,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -30844,7 +30844,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Password": "System.Security.SecureString", "Data": "System.String", @@ -30982,7 +30982,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", "GenericTypeArguments": [], @@ -31165,7 +31165,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", "GenericTypeArguments": [], @@ -31455,7 +31455,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", "GenericTypeArguments": [], @@ -31523,7 +31523,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -31591,7 +31591,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Port": "System.Int32", "ProvisioningState": "System.String", @@ -31654,7 +31654,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -31723,7 +31723,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Password": "System.Security.SecureString", "Data": "System.String", @@ -31915,7 +31915,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", "GenericTypeArguments": [], @@ -31990,7 +31990,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -32078,7 +32078,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -32242,7 +32242,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -32400,7 +32400,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -32502,7 +32502,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -32639,7 +32639,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -32719,7 +32719,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Port": "System.Int32", "ProvisioningState": "System.String", @@ -32812,7 +32812,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -32875,7 +32875,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Password": "System.Security.SecureString", "Data": "System.String", @@ -33013,7 +33013,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", "GenericTypeArguments": [], @@ -33070,7 +33070,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -33303,7 +33303,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", "GenericTypeArguments": [], @@ -33467,7 +33467,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -33700,7 +33700,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", "GenericTypeArguments": [], @@ -33768,7 +33768,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -33836,7 +33836,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Port": "System.Int32", "ProvisioningState": "System.String", @@ -33899,7 +33899,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -33968,7 +33968,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Password": "System.Security.SecureString", "Data": "System.String", @@ -34034,7 +34034,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -34267,7 +34267,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", "GenericTypeArguments": [], @@ -34342,7 +34342,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", @@ -34398,7 +34398,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -34538,7 +34538,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -34696,7 +34696,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", @@ -34888,7 +34888,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -34990,7 +34990,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -35130,7 +35130,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -35288,7 +35288,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -35390,7 +35390,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -35550,7 +35550,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -35734,7 +35734,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -35892,7 +35892,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Capacity": "System.Nullable`1[System.Int32]", "Tier": "System.String", @@ -35946,7 +35946,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", "CipherSuites": "System.Collections.Generic.List`1[System.String]", @@ -36004,7 +36004,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration", "GenericTypeArguments": [], @@ -36022,7 +36022,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", "GenericTypeArguments": [], @@ -36040,7 +36040,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate", "GenericTypeArguments": [], @@ -36058,7 +36058,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate", "GenericTypeArguments": [], @@ -36076,7 +36076,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", "GenericTypeArguments": [], @@ -36094,7 +36094,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", "GenericTypeArguments": [], @@ -36112,7 +36112,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", "GenericTypeArguments": [], @@ -36130,7 +36130,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", "GenericTypeArguments": [], @@ -36148,7 +36148,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", "GenericTypeArguments": [], @@ -36166,7 +36166,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", "GenericTypeArguments": [], @@ -36184,7 +36184,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", "GenericTypeArguments": [], @@ -36202,7 +36202,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule", "GenericTypeArguments": [], @@ -36220,7 +36220,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", "GenericTypeArguments": [], @@ -36238,7 +36238,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", "GenericTypeArguments": [], @@ -36256,7 +36256,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]", @@ -36336,7 +36336,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -36399,7 +36399,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MinCapacity": "System.Int32", "MaxCapacity": "System.Nullable`1[System.Int32]" @@ -36544,7 +36544,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", @@ -36635,7 +36635,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", "GenericTypeArguments": [], @@ -36766,7 +36766,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Capacity": "System.Nullable`1[System.Int32]", "Tier": "System.String", @@ -36826,7 +36826,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", "CipherSuites": "System.Collections.Generic.List`1[System.String]", @@ -36890,7 +36890,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration", "GenericTypeArguments": [], @@ -36914,7 +36914,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", "GenericTypeArguments": [], @@ -36938,7 +36938,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate", "GenericTypeArguments": [], @@ -36962,7 +36962,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate", "GenericTypeArguments": [], @@ -36986,7 +36986,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", "GenericTypeArguments": [], @@ -37010,7 +37010,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", "GenericTypeArguments": [], @@ -37034,7 +37034,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", "GenericTypeArguments": [], @@ -37058,7 +37058,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", "GenericTypeArguments": [], @@ -37082,7 +37082,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", "GenericTypeArguments": [], @@ -37106,7 +37106,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", "GenericTypeArguments": [], @@ -37130,7 +37130,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", "GenericTypeArguments": [], @@ -37154,7 +37154,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule", "GenericTypeArguments": [], @@ -37178,7 +37178,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", "GenericTypeArguments": [], @@ -37202,7 +37202,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", "GenericTypeArguments": [], @@ -37226,7 +37226,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]", @@ -37294,7 +37294,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MinCapacity": "System.Int32", "MaxCapacity": "System.Nullable`1[System.Int32]" @@ -37497,7 +37497,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", "GenericTypeArguments": [], @@ -37663,7 +37663,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Capacity": "System.Nullable`1[System.Int32]", "Tier": "System.String", @@ -37723,7 +37723,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", "CipherSuites": "System.Collections.Generic.List`1[System.String]", @@ -37787,7 +37787,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration", "GenericTypeArguments": [], @@ -37811,7 +37811,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", "GenericTypeArguments": [], @@ -37835,7 +37835,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate", "GenericTypeArguments": [], @@ -37859,7 +37859,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate", "GenericTypeArguments": [], @@ -37883,7 +37883,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", "GenericTypeArguments": [], @@ -37907,7 +37907,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", "GenericTypeArguments": [], @@ -37931,7 +37931,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", "GenericTypeArguments": [], @@ -37955,7 +37955,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", "GenericTypeArguments": [], @@ -37979,7 +37979,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", "GenericTypeArguments": [], @@ -38003,7 +38003,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", "GenericTypeArguments": [], @@ -38027,7 +38027,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", "GenericTypeArguments": [], @@ -38051,7 +38051,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule", "GenericTypeArguments": [], @@ -38075,7 +38075,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", "GenericTypeArguments": [], @@ -38099,7 +38099,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", "GenericTypeArguments": [], @@ -38123,7 +38123,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]", @@ -38191,7 +38191,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MinCapacity": "System.Int32", "MaxCapacity": "System.Nullable`1[System.Int32]" @@ -38394,7 +38394,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", "GenericTypeArguments": [], @@ -38462,7 +38462,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -38605,7 +38605,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Capacity": "System.Nullable`1[System.Int32]", "Tier": "System.String", @@ -38665,7 +38665,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", "CipherSuites": "System.Collections.Generic.List`1[System.String]", @@ -38729,7 +38729,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration", "GenericTypeArguments": [], @@ -38753,7 +38753,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", "GenericTypeArguments": [], @@ -38777,7 +38777,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate", "GenericTypeArguments": [], @@ -38801,7 +38801,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate", "GenericTypeArguments": [], @@ -38825,7 +38825,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", "GenericTypeArguments": [], @@ -38849,7 +38849,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", "GenericTypeArguments": [], @@ -38873,7 +38873,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", "GenericTypeArguments": [], @@ -38897,7 +38897,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", "GenericTypeArguments": [], @@ -38921,7 +38921,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", "GenericTypeArguments": [], @@ -38945,7 +38945,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", "GenericTypeArguments": [], @@ -38969,7 +38969,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", "GenericTypeArguments": [], @@ -38993,7 +38993,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule", "GenericTypeArguments": [], @@ -39017,7 +39017,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", "GenericTypeArguments": [], @@ -39041,7 +39041,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", "GenericTypeArguments": [], @@ -39065,7 +39065,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]", @@ -39133,7 +39133,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MinCapacity": "System.Int32", "MaxCapacity": "System.Nullable`1[System.Int32]" @@ -39336,7 +39336,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", "GenericTypeArguments": [], @@ -39504,7 +39504,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Capacity": "System.Nullable`1[System.Int32]", "Tier": "System.String", @@ -39564,7 +39564,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", "CipherSuites": "System.Collections.Generic.List`1[System.String]", @@ -39628,7 +39628,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration", "GenericTypeArguments": [], @@ -39652,7 +39652,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", "GenericTypeArguments": [], @@ -39676,7 +39676,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate", "GenericTypeArguments": [], @@ -39700,7 +39700,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate", "GenericTypeArguments": [], @@ -39724,7 +39724,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", "GenericTypeArguments": [], @@ -39748,7 +39748,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", "GenericTypeArguments": [], @@ -39772,7 +39772,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", "GenericTypeArguments": [], @@ -39796,7 +39796,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", "GenericTypeArguments": [], @@ -39820,7 +39820,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", "GenericTypeArguments": [], @@ -39844,7 +39844,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", "GenericTypeArguments": [], @@ -39868,7 +39868,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", "GenericTypeArguments": [], @@ -39892,7 +39892,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule", "GenericTypeArguments": [], @@ -39916,7 +39916,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", "GenericTypeArguments": [], @@ -39940,7 +39940,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", "GenericTypeArguments": [], @@ -39964,7 +39964,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]", @@ -40032,7 +40032,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MinCapacity": "System.Int32", "MaxCapacity": "System.Nullable`1[System.Int32]" @@ -40235,7 +40235,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", "GenericTypeArguments": [], @@ -40303,7 +40303,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", @@ -40438,7 +40438,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Capacity": "System.Nullable`1[System.Int32]", "Tier": "System.String", @@ -40498,7 +40498,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", "CipherSuites": "System.Collections.Generic.List`1[System.String]", @@ -40562,7 +40562,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration", "GenericTypeArguments": [], @@ -40586,7 +40586,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", "GenericTypeArguments": [], @@ -40610,7 +40610,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate", "GenericTypeArguments": [], @@ -40634,7 +40634,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate", "GenericTypeArguments": [], @@ -40658,7 +40658,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", "GenericTypeArguments": [], @@ -40682,7 +40682,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", "GenericTypeArguments": [], @@ -40706,7 +40706,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", "GenericTypeArguments": [], @@ -40730,7 +40730,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", "GenericTypeArguments": [], @@ -40754,7 +40754,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", "GenericTypeArguments": [], @@ -40778,7 +40778,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", "GenericTypeArguments": [], @@ -40802,7 +40802,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", "GenericTypeArguments": [], @@ -40826,7 +40826,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule", "GenericTypeArguments": [], @@ -40850,7 +40850,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", "GenericTypeArguments": [], @@ -40874,7 +40874,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", "GenericTypeArguments": [], @@ -40898,7 +40898,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]", @@ -40966,7 +40966,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MinCapacity": "System.Int32", "MaxCapacity": "System.Nullable`1[System.Int32]" @@ -41169,7 +41169,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", "GenericTypeArguments": [], @@ -41244,7 +41244,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -41366,7 +41366,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -41454,7 +41454,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -41558,7 +41558,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -41639,7 +41639,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -41724,7 +41724,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -42130,7 +42130,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -42206,7 +42206,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -42298,7 +42298,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -42367,7 +42367,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -42440,7 +42440,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -42608,7 +42608,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCodes": "System.Collections.Generic.List`1[System.String]", "Body": "System.String", @@ -42837,7 +42837,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -42939,7 +42939,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -43223,7 +43223,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCodes": "System.Collections.Generic.List`1[System.String]", "Body": "System.String", @@ -43316,7 +43316,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -43666,7 +43666,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCodes": "System.Collections.Generic.List`1[System.String]", "Body": "System.String", @@ -43777,7 +43777,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", "PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]", @@ -43863,7 +43863,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -44027,7 +44027,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -44185,7 +44185,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", "PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]", @@ -44436,7 +44436,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCodes": "System.Collections.Generic.List`1[System.String]", "Body": "System.String", @@ -44772,7 +44772,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCodes": "System.Collections.Generic.List`1[System.String]", "Body": "System.String", @@ -44883,7 +44883,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -45003,7 +45003,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -45167,7 +45167,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -45325,7 +45325,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -45427,7 +45427,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -45711,7 +45711,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCodes": "System.Collections.Generic.List`1[System.String]", "Body": "System.String", @@ -45804,7 +45804,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -46154,7 +46154,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCodes": "System.Collections.Generic.List`1[System.String]", "Body": "System.String", @@ -46265,7 +46265,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -46367,7 +46367,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -46527,7 +46527,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -46693,7 +46693,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -46973,7 +46973,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -47229,7 +47229,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -47304,7 +47304,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -47584,7 +47584,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -47847,7 +47847,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -47933,7 +47933,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -48097,7 +48097,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -48255,7 +48255,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -48382,7 +48382,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -48870,7 +48870,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -49274,7 +49274,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -49394,7 +49394,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -49558,7 +49558,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -49716,7 +49716,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -49818,7 +49818,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -49978,7 +49978,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -50144,7 +50144,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -50424,7 +50424,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -50680,7 +50680,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -50755,7 +50755,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -51035,7 +51035,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -51579,7 +51579,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -51681,7 +51681,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -51839,7 +51839,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -51943,7 +51943,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -52030,7 +52030,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -52118,7 +52118,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -52201,7 +52201,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -52282,7 +52282,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -52388,7 +52388,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -52734,7 +52734,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -52936,7 +52936,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -53028,7 +53028,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -53103,7 +53103,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -53179,7 +53179,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -53250,7 +53250,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -53319,7 +53319,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -53392,7 +53392,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -53601,7 +53601,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -53689,7 +53689,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -53853,7 +53853,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -54011,7 +54011,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -54138,7 +54138,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -54242,7 +54242,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -54329,7 +54329,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -54417,7 +54417,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -54500,7 +54500,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -54581,7 +54581,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -55021,7 +55021,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -55113,7 +55113,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -55188,7 +55188,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -55264,7 +55264,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -55335,7 +55335,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -55404,7 +55404,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -55579,7 +55579,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -55667,7 +55667,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -55831,7 +55831,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -55989,7 +55989,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -56091,7 +56091,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -56249,7 +56249,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -56353,7 +56353,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -56440,7 +56440,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -56528,7 +56528,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -56611,7 +56611,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -56692,7 +56692,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -56798,7 +56798,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -57144,7 +57144,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -57346,7 +57346,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -57438,7 +57438,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -57513,7 +57513,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -57589,7 +57589,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -57660,7 +57660,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -57729,7 +57729,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -57802,7 +57802,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -58011,7 +58011,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UrlConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration", "RequestHeaderConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", @@ -58069,7 +58069,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -58089,7 +58089,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -58109,7 +58109,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Reroute": "System.Boolean", "ModifiedQueryString": "System.String", @@ -58202,7 +58202,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -58228,7 +58228,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -58254,7 +58254,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Reroute": "System.Boolean", "ModifiedQueryString": "System.String", @@ -58365,7 +58365,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IgnoreCase": "System.Nullable`1[System.Boolean]", "Negate": "System.Nullable`1[System.Boolean]", @@ -58679,7 +58679,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HeaderName": "System.String", "HeaderValue": "System.String" @@ -58907,7 +58907,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -59009,7 +59009,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -59128,7 +59128,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -59187,7 +59187,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -59318,7 +59318,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -59395,7 +59395,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -59477,7 +59477,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -59641,7 +59641,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -59799,7 +59799,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -59881,7 +59881,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -59964,7 +59964,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -60041,7 +60041,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -60161,7 +60161,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -60325,7 +60325,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -60483,7 +60483,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -60585,7 +60585,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -60704,7 +60704,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -60763,7 +60763,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -60894,7 +60894,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -60971,7 +60971,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Reroute": "System.Boolean", "ModifiedQueryString": "System.String", @@ -61242,7 +61242,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ActionSet": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet", "Conditions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition]", @@ -61319,7 +61319,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UrlConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration", "RequestHeaderConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", @@ -61394,7 +61394,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition", "GenericTypeArguments": [], @@ -61475,7 +61475,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UrlConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration", "RequestHeaderConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", @@ -61562,7 +61562,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition", "GenericTypeArguments": [], @@ -61637,7 +61637,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -61739,7 +61739,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -61897,7 +61897,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -62079,7 +62079,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Capacity": "System.Nullable`1[System.Int32]", "Tier": "System.String", @@ -62134,7 +62134,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -62274,7 +62274,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -62432,7 +62432,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Capacity": "System.Nullable`1[System.Int32]", "Tier": "System.String", @@ -62733,7 +62733,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -62835,7 +62835,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -63044,7 +63044,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -63289,7 +63289,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -63391,7 +63391,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -63603,7 +63603,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -63857,7 +63857,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Password": "System.Security.SecureString", "Data": "System.String", @@ -63936,7 +63936,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -64100,7 +64100,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -64258,7 +64258,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Password": "System.Security.SecureString", "Data": "System.String", @@ -64577,7 +64577,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -64697,7 +64697,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -64861,7 +64861,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -65019,7 +65019,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -65121,7 +65121,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -65333,7 +65333,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -65587,7 +65587,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", "CipherSuites": "System.Collections.Generic.List`1[System.String]", @@ -65646,7 +65646,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -65786,7 +65786,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -65944,7 +65944,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", "CipherSuites": "System.Collections.Generic.List`1[System.String]", @@ -66325,7 +66325,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -66427,7 +66427,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -66585,7 +66585,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -66767,7 +66767,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -66869,7 +66869,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -67110,7 +67110,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -67399,7 +67399,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -67501,7 +67501,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -67641,7 +67641,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -67799,7 +67799,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -67901,7 +67901,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -68059,7 +68059,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -68241,7 +68241,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -68343,7 +68343,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -68519,7 +68519,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -68725,7 +68725,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Data": "System.String", "ProvisioningState": "System.String", @@ -68801,7 +68801,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -68965,7 +68965,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -69123,7 +69123,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Data": "System.String", "ProvisioningState": "System.String", @@ -69355,7 +69355,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -69475,7 +69475,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -69639,7 +69639,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -69797,7 +69797,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -69899,7 +69899,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -70075,7 +70075,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -70281,7 +70281,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -70383,7 +70383,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -70502,7 +70502,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", "GenericTypeArguments": [], @@ -70538,7 +70538,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -70626,7 +70626,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -70712,7 +70712,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -70811,7 +70811,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -70917,7 +70917,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -71048,7 +71048,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", "GenericTypeArguments": [], @@ -71188,7 +71188,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -71319,7 +71319,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", "GenericTypeArguments": [], @@ -71387,7 +71387,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -71463,7 +71463,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -71555,7 +71555,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -71624,7 +71624,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -71755,7 +71755,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", "GenericTypeArguments": [], @@ -71823,7 +71823,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -71892,7 +71892,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -71965,7 +71965,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -72096,7 +72096,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", "GenericTypeArguments": [], @@ -72212,7 +72212,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -72343,7 +72343,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", "GenericTypeArguments": [], @@ -72418,7 +72418,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -72502,7 +72502,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -72666,7 +72666,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -72824,7 +72824,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -72908,7 +72908,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", "GenericTypeArguments": [], @@ -72944,7 +72944,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -73032,7 +73032,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -73118,7 +73118,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -73217,7 +73217,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -73347,7 +73347,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", "GenericTypeArguments": [], @@ -73511,7 +73511,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", "GenericTypeArguments": [], @@ -73579,7 +73579,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -73655,7 +73655,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -73747,7 +73747,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -73840,7 +73840,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", "GenericTypeArguments": [], @@ -73908,7 +73908,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -73977,7 +73977,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -74074,7 +74074,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", "GenericTypeArguments": [], @@ -74214,7 +74214,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", "GenericTypeArguments": [], @@ -74289,7 +74289,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -74409,7 +74409,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -74573,7 +74573,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -74731,7 +74731,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -74833,7 +74833,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -74952,7 +74952,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", "GenericTypeArguments": [], @@ -74988,7 +74988,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -75076,7 +75076,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -75162,7 +75162,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -75261,7 +75261,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -75367,7 +75367,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -75498,7 +75498,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", "GenericTypeArguments": [], @@ -75638,7 +75638,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -75769,7 +75769,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", "GenericTypeArguments": [], @@ -75837,7 +75837,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -75913,7 +75913,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -76005,7 +76005,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -76074,7 +76074,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -76205,7 +76205,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", "GenericTypeArguments": [], @@ -76273,7 +76273,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -76342,7 +76342,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -76415,7 +76415,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -76546,7 +76546,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", "GenericTypeArguments": [], @@ -76662,7 +76662,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -76793,7 +76793,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", "GenericTypeArguments": [], @@ -76868,7 +76868,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAvailablePrivateEndpointType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailablePrivateEndpointType, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailablePrivateEndpointType, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Id": "System.String", @@ -77099,7 +77099,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "FqdnTagName": "System.String", @@ -77157,7 +77157,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag]", - "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -77268,7 +77268,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Protocols": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol]", "SourceAddresses": "System.Collections.Generic.List`1[System.String]", @@ -77918,7 +77918,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection]", "Name": "System.String", @@ -78021,7 +78021,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule", "GenericTypeArguments": [], @@ -78147,7 +78147,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule", "GenericTypeArguments": [], @@ -78249,7 +78249,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", @@ -78622,7 +78622,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Action": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule]", @@ -78748,7 +78748,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNetworkRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "protocols": "System.Collections.Generic.List`1[System.String]", "SourceAddresses": "System.Collections.Generic.List`1[System.String]", @@ -78963,7 +78963,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNetworkRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "protocols": "System.Collections.Generic.List`1[System.String]", "SourceAddresses": "System.Collections.Generic.List`1[System.String]", @@ -79166,7 +79166,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Protocols": "System.Collections.Generic.List`1[System.String]", "SourceAddresses": "System.Collections.Generic.List`1[System.String]", @@ -79596,7 +79596,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", @@ -80228,7 +80228,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", @@ -80753,7 +80753,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", @@ -80946,7 +80946,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup", "Name": "System.String" @@ -81056,7 +81056,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", @@ -81321,7 +81321,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", @@ -81554,7 +81554,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection]", "Name": "System.String", @@ -81657,7 +81657,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection", "GenericTypeArguments": [], @@ -81693,7 +81693,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", @@ -81862,7 +81862,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection", "GenericTypeArguments": [], @@ -82026,7 +82026,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection", "GenericTypeArguments": [], @@ -82094,7 +82094,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", @@ -82212,7 +82212,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection", "GenericTypeArguments": [], @@ -82344,7 +82344,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", @@ -82426,7 +82426,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup", "Name": "System.String" @@ -82806,7 +82806,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", @@ -82992,7 +82992,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup", "Name": "System.String" @@ -83430,7 +83430,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection]", "Name": "System.String", @@ -83517,7 +83517,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup", "Name": "System.String" @@ -83570,7 +83570,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", @@ -83706,7 +83706,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection", "GenericTypeArguments": [], @@ -83861,7 +83861,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection", "GenericTypeArguments": [], @@ -83955,7 +83955,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", @@ -84049,7 +84049,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection", "GenericTypeArguments": [], @@ -84117,7 +84117,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup", "Name": "System.String" @@ -84200,7 +84200,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection", "GenericTypeArguments": [], @@ -84316,7 +84316,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection", "GenericTypeArguments": [], @@ -84408,7 +84408,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection", "GenericTypeArguments": [], @@ -84483,7 +84483,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", @@ -84586,7 +84586,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", @@ -85045,7 +85045,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", @@ -85626,7 +85626,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Action": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule]", @@ -85752,7 +85752,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule", "GenericTypeArguments": [], @@ -85878,7 +85878,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule", "GenericTypeArguments": [], @@ -85980,7 +85980,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Protocols": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol]", "SourceAddresses": "System.Collections.Generic.List`1[System.String]", @@ -86698,7 +86698,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku", @@ -86982,7 +86982,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewall]", - "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -87181,7 +87181,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Action": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRCAction", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule]", @@ -87307,7 +87307,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule", "GenericTypeArguments": [], @@ -87412,7 +87412,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule", "GenericTypeArguments": [], @@ -87487,7 +87487,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Protocols": "System.Collections.Generic.List`1[System.String]", "SourceAddresses": "System.Collections.Generic.List`1[System.String]", @@ -88082,7 +88082,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Action": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule]", @@ -88208,7 +88208,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule", "GenericTypeArguments": [], @@ -88334,7 +88334,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule", "GenericTypeArguments": [], @@ -88436,7 +88436,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Protocols": "System.Collections.Generic.List`1[System.String]", "SourceAddresses": "System.Collections.Generic.List`1[System.String]", @@ -88992,7 +88992,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku", @@ -89372,7 +89372,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -89447,7 +89447,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "GenericTypeArguments": [], @@ -89465,7 +89465,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -89541,7 +89541,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection", "GenericTypeArguments": [], @@ -89559,7 +89559,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection", "GenericTypeArguments": [], @@ -89577,7 +89577,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection", "GenericTypeArguments": [], @@ -89617,7 +89617,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FQDNs": "System.String[]", "IpAddresses": "System.String[]" @@ -89930,7 +89930,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection", "GenericTypeArguments": [], @@ -89954,7 +89954,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection", "GenericTypeArguments": [], @@ -89978,7 +89978,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection", "GenericTypeArguments": [], @@ -90030,7 +90030,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FQDNs": "System.String[]", "IpAddresses": "System.String[]" @@ -90450,7 +90450,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection", "GenericTypeArguments": [], @@ -90474,7 +90474,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection", "GenericTypeArguments": [], @@ -90498,7 +90498,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection", "GenericTypeArguments": [], @@ -90550,7 +90550,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FQDNs": "System.String[]", "IpAddresses": "System.String[]" @@ -90848,7 +90848,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -90929,7 +90929,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "GenericTypeArguments": [], @@ -90953,7 +90953,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -91109,7 +91109,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection", "GenericTypeArguments": [], @@ -91133,7 +91133,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection", "GenericTypeArguments": [], @@ -91157,7 +91157,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection", "GenericTypeArguments": [], @@ -91209,7 +91209,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FQDNs": "System.String[]", "IpAddresses": "System.String[]" @@ -91841,7 +91841,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku", @@ -92129,7 +92129,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku", @@ -92473,7 +92473,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku", @@ -92841,7 +92841,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FQDNs": "System.String[]", "IpAddresses": "System.String[]" @@ -93071,7 +93071,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId", "EnableInternetSecurity": "System.Boolean", @@ -93170,7 +93170,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", @@ -93648,7 +93648,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", @@ -94425,7 +94425,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId", "EnableInternetSecurity": "System.Boolean", @@ -94847,7 +94847,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId", "EnableInternetSecurity": "System.Boolean", @@ -95104,7 +95104,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", @@ -95490,7 +95490,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", @@ -95633,7 +95633,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -96005,7 +96005,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -96769,7 +96769,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", @@ -97076,7 +97076,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", @@ -97458,7 +97458,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", @@ -97568,7 +97568,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", @@ -97958,7 +97958,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", @@ -98482,7 +98482,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "EnableInternetSecurity": "System.Boolean", @@ -98582,7 +98582,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -98858,7 +98858,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -99181,7 +99181,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "EnableInternetSecurity": "System.Boolean", @@ -99281,7 +99281,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -99393,7 +99393,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -99806,7 +99806,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -100009,7 +100009,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -100085,7 +100085,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -100288,7 +100288,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -100534,7 +100534,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -101111,7 +101111,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "EnableInternetSecurity": "System.Boolean", @@ -101477,7 +101477,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "EnableInternetSecurity": "System.Boolean", @@ -101921,7 +101921,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "EnableInternetSecurity": "System.Boolean", @@ -102041,7 +102041,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "EnableInternetSecurity": "System.Boolean", @@ -102369,7 +102369,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "EnableInternetSecurity": "System.Boolean", @@ -102747,7 +102747,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -103045,7 +103045,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -103155,7 +103155,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -103377,7 +103377,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -103615,7 +103615,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnConnectionHealth", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SasUrl": "System.String" }, @@ -103708,7 +103708,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -104014,7 +104014,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -104396,7 +104396,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnProfileResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfileResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfileResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ProfileUrl": "System.String" }, @@ -104489,7 +104489,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -104759,7 +104759,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -105078,7 +105078,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -105223,7 +105223,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -105311,7 +105311,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -105716,7 +105716,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -106231,7 +106231,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -106307,7 +106307,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -106583,7 +106583,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -106898,7 +106898,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -107480,7 +107480,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -107789,7 +107789,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -108173,7 +108173,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -108285,7 +108285,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -108390,7 +108390,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -108824,7 +108824,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -109267,7 +109267,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -109484,7 +109484,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -109559,7 +109559,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -109786,7 +109786,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -110213,7 +110213,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -110773,7 +110773,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressPrefixes": "System.Collections.Generic.List`1[System.String]", "Destinations": "System.Collections.Generic.List`1[System.String]", @@ -111089,7 +111089,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", "Connections": "System.Collections.Generic.List`1[System.String]", @@ -111165,7 +111165,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute", "GenericTypeArguments": [], @@ -111264,7 +111264,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute", "GenericTypeArguments": [], @@ -111363,7 +111363,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", "Connections": "System.Collections.Generic.List`1[System.String]", @@ -111464,7 +111464,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -111741,7 +111741,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -112147,7 +112147,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -112219,7 +112219,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", "Connections": "System.Collections.Generic.List`1[System.String]", @@ -112614,7 +112614,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -112808,7 +112808,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", "Connections": "System.Collections.Generic.List`1[System.String]", @@ -113252,7 +113252,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -113551,7 +113551,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -113661,7 +113661,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -113779,7 +113779,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", "GenericTypeArguments": [], @@ -113797,7 +113797,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", "Connections": "System.Collections.Generic.List`1[System.String]", @@ -114046,7 +114046,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", "GenericTypeArguments": [], @@ -114070,7 +114070,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", "Connections": "System.Collections.Generic.List`1[System.String]", @@ -114249,7 +114249,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -114418,7 +114418,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", "GenericTypeArguments": [], @@ -114442,7 +114442,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", "Connections": "System.Collections.Generic.List`1[System.String]", @@ -114744,7 +114744,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", "GenericTypeArguments": [], @@ -114768,7 +114768,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", "Connections": "System.Collections.Generic.List`1[System.String]", @@ -114954,7 +114954,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressPrefixes": "System.Collections.Generic.List`1[System.String]", "Destinations": "System.Collections.Generic.List`1[System.String]", @@ -115186,7 +115186,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", "Connections": "System.Collections.Generic.List`1[System.String]", @@ -115244,7 +115244,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute", "GenericTypeArguments": [], @@ -115301,7 +115301,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute", "GenericTypeArguments": [], @@ -115456,7 +115456,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -115930,7 +115930,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -116245,7 +116245,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -116378,7 +116378,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -116448,7 +116448,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", "GenericTypeArguments": [], @@ -116593,7 +116593,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", "GenericTypeArguments": [], @@ -116735,7 +116735,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", "GenericTypeArguments": [], @@ -116853,7 +116853,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -116929,7 +116929,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", "GenericTypeArguments": [], @@ -117045,7 +117045,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", "GenericTypeArguments": [], @@ -117168,7 +117168,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -117300,7 +117300,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -117388,7 +117388,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", "GenericTypeArguments": [], @@ -117406,7 +117406,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", "Connections": "System.Collections.Generic.List`1[System.String]", @@ -117631,7 +117631,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", "GenericTypeArguments": [], @@ -117655,7 +117655,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", "Connections": "System.Collections.Generic.List`1[System.String]", @@ -117884,7 +117884,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", "GenericTypeArguments": [], @@ -117908,7 +117908,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", "Connections": "System.Collections.Generic.List`1[System.String]", @@ -118089,7 +118089,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -118189,7 +118189,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", "GenericTypeArguments": [], @@ -118213,7 +118213,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", "Connections": "System.Collections.Generic.List`1[System.String]", @@ -118416,7 +118416,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", "GenericTypeArguments": [], @@ -118440,7 +118440,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", "Connections": "System.Collections.Generic.List`1[System.String]", @@ -118626,7 +118626,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -118917,7 +118917,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationsResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationsResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationsResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VpnServerConfigurationResourceIds": "System.Collections.Generic.List`1[System.String]", "VpnServerConfigurationResourceIdsText": "System.String" @@ -119011,7 +119011,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -119230,7 +119230,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -119525,7 +119525,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnProfileResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfileResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfileResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ProfileUrl": "System.String" }, @@ -119618,7 +119618,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -119702,7 +119702,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -119909,7 +119909,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -120212,7 +120212,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -120282,7 +120282,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -120440,7 +120440,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -120631,7 +120631,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -120986,7 +120986,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWanVpnSitesConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWanVpnSitesConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWanVpnSitesConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SasUrl": "System.String" }, @@ -121080,7 +121080,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -121200,7 +121200,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", "GenericTypeArguments": [], @@ -121308,7 +121308,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", "GenericTypeArguments": [], @@ -121545,7 +121545,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -121615,7 +121615,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", "GenericTypeArguments": [], @@ -121709,7 +121709,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -121897,7 +121897,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", "GenericTypeArguments": [], @@ -122182,7 +122182,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -122739,7 +122739,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -123043,7 +123043,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -123422,7 +123422,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -123528,7 +123528,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -124008,7 +124008,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -124687,7 +124687,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "EnableInternetSecurity": "System.Boolean", @@ -124798,7 +124798,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -124905,7 +124905,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -125026,7 +125026,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -125160,7 +125160,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection", "GenericTypeArguments": [], @@ -125304,7 +125304,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -125452,7 +125452,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -125616,7 +125616,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection", "GenericTypeArguments": [], @@ -125882,7 +125882,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -126046,7 +126046,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection", "GenericTypeArguments": [], @@ -126165,7 +126165,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -126236,7 +126236,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -126384,7 +126384,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -126548,7 +126548,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection", "GenericTypeArguments": [], @@ -126667,7 +126667,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -126837,7 +126837,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -127001,7 +127001,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection", "GenericTypeArguments": [], @@ -127144,7 +127144,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -127292,7 +127292,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -127456,7 +127456,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection", "GenericTypeArguments": [], @@ -127698,7 +127698,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -127862,7 +127862,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection", "GenericTypeArguments": [], @@ -128053,7 +128053,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -128217,7 +128217,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection", "GenericTypeArguments": [], @@ -128340,7 +128340,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VpnSiteLink": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "EnableBgp": "System.Boolean", @@ -128428,7 +128428,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BgpProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings", "LinkProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties", @@ -128541,7 +128541,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -128740,7 +128740,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BgpProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings", "LinkProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties", @@ -128877,7 +128877,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -129193,7 +129193,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "EnableInternetSecurity": "System.Boolean", @@ -129626,7 +129626,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "EnableInternetSecurity": "System.Boolean", @@ -129891,7 +129891,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -130185,7 +130185,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -130308,7 +130308,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -130414,7 +130414,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", "GenericTypeArguments": [], @@ -130582,7 +130582,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", "GenericTypeArguments": [], @@ -130698,7 +130698,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -130849,7 +130849,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", "GenericTypeArguments": [], @@ -131064,7 +131064,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", "GenericTypeArguments": [], @@ -131279,7 +131279,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", "GenericTypeArguments": [], @@ -131462,7 +131462,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -131767,7 +131767,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -132147,7 +132147,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -132255,7 +132255,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -132338,7 +132338,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", "GenericTypeArguments": [], @@ -132501,7 +132501,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", "GenericTypeArguments": [], @@ -132643,7 +132643,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -132714,7 +132714,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", "GenericTypeArguments": [], @@ -132878,7 +132878,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", "GenericTypeArguments": [], @@ -133018,7 +133018,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", "GenericTypeArguments": [], @@ -133165,7 +133165,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -133473,7 +133473,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -133815,7 +133815,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -134038,7 +134038,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -134332,7 +134332,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -134674,7 +134674,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -134992,7 +134992,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -135175,7 +135175,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -135494,7 +135494,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -135888,7 +135888,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -136009,7 +136009,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -136313,7 +136313,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -136560,7 +136560,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -136878,7 +136878,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -137172,7 +137172,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -137290,7 +137290,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -137478,7 +137478,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -137596,7 +137596,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -137832,7 +137832,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -137950,7 +137950,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -138162,7 +138162,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -138407,7 +138407,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -138700,7 +138700,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -138969,7 +138969,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -139140,7 +139140,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -139263,7 +139263,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -139559,7 +139559,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -139720,7 +139720,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -139946,7 +139946,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", "GenericTypeArguments": [], @@ -140733,7 +140733,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", "GenericTypeArguments": [], @@ -140996,7 +140996,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -141425,7 +141425,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -141495,7 +141495,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", "GenericTypeArguments": [], @@ -142165,7 +142165,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", "GenericTypeArguments": [], @@ -142435,7 +142435,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BgpProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings", "LinkProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties", @@ -142897,7 +142897,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -143204,7 +143204,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -143586,7 +143586,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -143695,7 +143695,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -143818,7 +143818,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -144044,7 +144044,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", "GenericTypeArguments": [], @@ -144428,7 +144428,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", "GenericTypeArguments": [], @@ -144811,7 +144811,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", "GenericTypeArguments": [], @@ -144978,7 +144978,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -145240,7 +145240,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", "GenericTypeArguments": [], @@ -145599,7 +145599,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", "GenericTypeArguments": [], @@ -145717,7 +145717,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -146030,7 +146030,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", "GenericTypeArguments": [], @@ -146148,7 +146148,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -146437,7 +146437,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", "GenericTypeArguments": [], @@ -146555,7 +146555,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -146628,7 +146628,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -146890,7 +146890,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", "GenericTypeArguments": [], @@ -147008,7 +147008,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -147273,7 +147273,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", "GenericTypeArguments": [], @@ -147655,7 +147655,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", "GenericTypeArguments": [], @@ -148013,7 +148013,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", "GenericTypeArguments": [], @@ -148155,7 +148155,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -148417,7 +148417,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", "GenericTypeArguments": [], @@ -148751,7 +148751,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", "GenericTypeArguments": [], @@ -149059,7 +149059,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", "GenericTypeArguments": [], @@ -149182,7 +149182,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDdosProtectionPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDdosProtectionPlan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDdosProtectionPlan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualNetworks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Tag": "System.Collections.Hashtable", @@ -149789,7 +149789,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -149889,7 +149889,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -150033,7 +150033,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -150171,7 +150171,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AuthorizationKey": "System.String", "AuthorizationUseStatus": "System.String", @@ -150247,7 +150247,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -150391,7 +150391,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -150529,7 +150529,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AuthorizationKey": "System.String", "AuthorizationUseStatus": "System.String", @@ -150719,7 +150719,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -150819,7 +150819,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -150963,7 +150963,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -151101,7 +151101,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -151361,7 +151361,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -151831,7 +151831,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -152067,7 +152067,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -152159,7 +152159,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPeering[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPeering", "GenericTypeArguments": [], @@ -152177,7 +152177,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization", "GenericTypeArguments": [], @@ -152438,7 +152438,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPeering[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPeering", "GenericTypeArguments": [], @@ -152462,7 +152462,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization", "GenericTypeArguments": [], @@ -152830,7 +152830,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPeering[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPeering", "GenericTypeArguments": [], @@ -152854,7 +152854,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization", "GenericTypeArguments": [], @@ -153020,7 +153020,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -153254,7 +153254,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPeering[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPeering", "GenericTypeArguments": [], @@ -153278,7 +153278,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization", "GenericTypeArguments": [], @@ -153451,7 +153451,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -153551,7 +153551,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -153816,7 +153816,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -153993,7 +153993,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -154443,7 +154443,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -154845,7 +154845,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -154950,7 +154950,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -155363,7 +155363,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -155463,7 +155463,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -155661,7 +155661,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -155888,7 +155888,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -156078,7 +156078,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PeerExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -156159,7 +156159,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -156303,7 +156303,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -156441,7 +156441,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -156541,7 +156541,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -156685,7 +156685,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -156823,7 +156823,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig", "MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig", @@ -156919,7 +156919,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -157063,7 +157063,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -157201,7 +157201,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig", "MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig", @@ -157481,7 +157481,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -158336,7 +158336,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -158767,7 +158767,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -158867,7 +158867,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -159033,7 +159033,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -159199,7 +159199,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -159299,7 +159299,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -159564,7 +159564,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -159741,7 +159741,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -160191,7 +160191,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -160593,7 +160593,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -160698,7 +160698,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -161434,7 +161434,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -161516,7 +161516,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -161654,7 +161654,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -161816,7 +161816,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitArpTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitArpTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitArpTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Age": "System.Nullable`1[System.Int32]", "InterfaceProperty": "System.String", @@ -161933,7 +161933,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -162154,7 +162154,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -162314,7 +162314,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Weight": "System.Nullable`1[System.Int32]", "Network": "System.String", @@ -162432,7 +162432,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -162653,7 +162653,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -162813,7 +162813,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTableSummary", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTableSummary, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTableSummary, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "V": "System.Nullable`1[System.Int32]", "AsProperty": "System.Nullable`1[System.Int32]", @@ -162931,7 +162931,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -163152,7 +163152,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -163312,7 +163312,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitStats", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitStats, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitStats, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrimaryBytesIn": "System.Nullable`1[System.Int64]", "PrimaryBytesOut": "System.Nullable`1[System.Int64]", @@ -163600,7 +163600,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitArpTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitArpTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitArpTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Age": "System.Nullable`1[System.Int32]", "InterfaceProperty": "System.String", @@ -163695,7 +163695,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -163789,7 +163789,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -164013,7 +164013,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -164169,7 +164169,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -164275,7 +164275,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -164459,7 +164459,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -164622,7 +164622,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Weight": "System.Nullable`1[System.Int32]", "Network": "System.String", @@ -164718,7 +164718,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -164812,7 +164812,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -165036,7 +165036,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -165192,7 +165192,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -165298,7 +165298,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -165482,7 +165482,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -165645,7 +165645,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -165757,7 +165757,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -165851,7 +165851,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -166075,7 +166075,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -166231,7 +166231,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -166337,7 +166337,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -166521,7 +166521,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -166684,7 +166684,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -166775,7 +166775,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -167115,7 +167115,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -167519,7 +167519,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig", "MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig", @@ -167609,7 +167609,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -167744,7 +167744,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -167873,7 +167873,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -167946,7 +167946,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -168115,7 +168115,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -168320,7 +168320,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -168567,7 +168567,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -168640,7 +168640,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -168784,7 +168784,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering", "GenericTypeArguments": [], @@ -168877,7 +168877,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -169143,7 +169143,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering", "GenericTypeArguments": [], @@ -169358,7 +169358,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableBandwidths": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths]", "Tag": "System.Collections.Hashtable", @@ -169556,7 +169556,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -169939,7 +169939,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", @@ -169995,7 +169995,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -170108,7 +170108,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -170239,7 +170239,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", @@ -170431,7 +170431,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -170506,7 +170506,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -170619,7 +170619,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -170750,7 +170750,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -170825,7 +170825,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -170958,7 +170958,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -171115,7 +171115,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MacSecConfig": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLinkMacSecConfig", "RouterName": "System.String", @@ -171197,7 +171197,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -171352,7 +171352,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -171476,7 +171476,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -171624,7 +171624,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -171755,7 +171755,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -171976,7 +171976,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink", "GenericTypeArguments": [], @@ -172030,7 +172030,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", @@ -172268,7 +172268,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink", "GenericTypeArguments": [], @@ -172340,7 +172340,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", @@ -172615,7 +172615,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink", "GenericTypeArguments": [], @@ -172687,7 +172687,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", @@ -172912,7 +172912,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink", "GenericTypeArguments": [], @@ -172984,7 +172984,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", @@ -173115,7 +173115,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -173338,7 +173338,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -173963,7 +173963,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -174040,7 +174040,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -174173,7 +174173,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -174328,7 +174328,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MatchVariables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable]", "MatchValues": "System.Collections.Generic.List`1[System.String]", @@ -174388,7 +174388,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable", "GenericTypeArguments": [], @@ -174536,7 +174536,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable", "GenericTypeArguments": [], @@ -174726,7 +174726,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MatchConditions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition]", "Priority": "System.Int32", @@ -174840,7 +174840,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition", "GenericTypeArguments": [], @@ -174993,7 +174993,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition", "GenericTypeArguments": [], @@ -175096,7 +175096,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VariableName": "System.String", "Selector": "System.String" @@ -175342,7 +175342,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -175584,7 +175584,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MatchVariable": "System.String", "SelectorMatchOperator": "System.String", @@ -175875,7 +175875,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleId": "System.String", "State": "System.String" @@ -176107,7 +176107,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride]", "RuleGroupName": "System.String" @@ -176179,7 +176179,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride", "GenericTypeArguments": [], @@ -176260,7 +176260,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride", "GenericTypeArguments": [], @@ -176335,7 +176335,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleGroupOverrides": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride]", "RuleSetVersion": "System.String", @@ -176426,7 +176426,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride", "GenericTypeArguments": [], @@ -176531,7 +176531,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride", "GenericTypeArguments": [], @@ -176606,7 +176606,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]", "ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]" @@ -176660,7 +176660,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet", "GenericTypeArguments": [], @@ -176678,7 +176678,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion", "GenericTypeArguments": [], @@ -176735,7 +176735,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet", "GenericTypeArguments": [], @@ -176759,7 +176759,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion", "GenericTypeArguments": [], @@ -176834,7 +176834,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -176954,7 +176954,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule", "GenericTypeArguments": [], @@ -176972,7 +176972,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RequestBodyCheck": "System.Boolean", "MaxRequestBodySizeInKb": "System.Int32", @@ -177028,7 +177028,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]", "ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]" @@ -177248,7 +177248,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule", "GenericTypeArguments": [], @@ -177272,7 +177272,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RequestBodyCheck": "System.Boolean", "MaxRequestBodySizeInKb": "System.Int32", @@ -177334,7 +177334,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]", "ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]" @@ -177516,7 +177516,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RequestBodyCheck": "System.Boolean", "MaxRequestBodySizeInKb": "System.Int32", @@ -177942,7 +177942,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -178282,7 +178282,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -178730,7 +178730,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -178830,7 +178830,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -178911,7 +178911,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule", "GenericTypeArguments": [], @@ -178929,7 +178929,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RequestBodyCheck": "System.Boolean", "MaxRequestBodySizeInKb": "System.Int32", @@ -178985,7 +178985,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]", "ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]" @@ -179143,7 +179143,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule", "GenericTypeArguments": [], @@ -179167,7 +179167,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RequestBodyCheck": "System.Boolean", "MaxRequestBodySizeInKb": "System.Int32", @@ -179229,7 +179229,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]", "ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]" @@ -179356,7 +179356,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -179425,7 +179425,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule", "GenericTypeArguments": [], @@ -179449,7 +179449,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RequestBodyCheck": "System.Boolean", "MaxRequestBodySizeInKb": "System.Int32", @@ -179511,7 +179511,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]", "ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]" @@ -179662,7 +179662,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule", "GenericTypeArguments": [], @@ -179686,7 +179686,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RequestBodyCheck": "System.Boolean", "MaxRequestBodySizeInKb": "System.Int32", @@ -179748,7 +179748,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]", "ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]" @@ -179875,7 +179875,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule", "GenericTypeArguments": [], @@ -179899,7 +179899,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RequestBodyCheck": "System.Boolean", "MaxRequestBodySizeInKb": "System.Int32", @@ -179961,7 +179961,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]", "ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]" @@ -180095,7 +180095,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -180335,7 +180335,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -181066,7 +181066,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -181144,7 +181144,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -181278,7 +181278,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -181436,7 +181436,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -181508,7 +181508,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -181642,7 +181642,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -181800,7 +181800,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -182004,7 +182004,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -182082,7 +182082,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -182216,7 +182216,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -182374,7 +182374,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -182452,7 +182452,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -182622,7 +182622,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -182753,7 +182753,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -182868,7 +182868,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -183094,7 +183094,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -183213,7 +183213,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -183463,7 +183463,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -183662,7 +183662,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -183837,7 +183837,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -183919,7 +183919,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -184101,7 +184101,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -184201,7 +184201,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -184335,7 +184335,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -184493,7 +184493,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -184686,7 +184686,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -184817,7 +184817,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -185075,7 +185075,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -185569,7 +185569,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -185750,7 +185750,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -185828,7 +185828,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -185962,7 +185962,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -186120,7 +186120,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -186198,7 +186198,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -186368,7 +186368,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -186499,7 +186499,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -186614,7 +186614,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -186840,7 +186840,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -186959,7 +186959,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -187209,7 +187209,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -187408,7 +187408,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -187583,7 +187583,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -187665,7 +187665,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -187847,7 +187847,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -188283,7 +188283,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -188361,7 +188361,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -188600,7 +188600,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -188738,7 +188738,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -189081,7 +189081,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -189400,7 +189400,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -189505,7 +189505,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -189831,7 +189831,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPortRangeStart": "System.Int32", @@ -189911,7 +189911,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -190045,7 +190045,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -190203,7 +190203,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPortRangeStart": "System.Int32", @@ -190445,7 +190445,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -191079,7 +191079,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -191427,7 +191427,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -191505,7 +191505,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -191639,7 +191639,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -191797,7 +191797,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -191875,7 +191875,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -192114,7 +192114,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -192252,7 +192252,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -192595,7 +192595,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -192914,7 +192914,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -193019,7 +193019,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -193345,7 +193345,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -193423,7 +193423,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -193644,7 +193644,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -193782,7 +193782,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -194101,7 +194101,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -194396,7 +194396,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -194501,7 +194501,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -194803,7 +194803,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", "FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -194879,7 +194879,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -195013,7 +195013,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -195171,7 +195171,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", "FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -195391,7 +195391,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -195977,7 +195977,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -196301,7 +196301,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -196379,7 +196379,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -196513,7 +196513,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -196671,7 +196671,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -196749,7 +196749,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -196970,7 +196970,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -197108,7 +197108,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -197427,7 +197427,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -197722,7 +197722,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -197827,7 +197827,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -198129,7 +198129,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -198207,7 +198207,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -198464,7 +198464,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -198581,7 +198581,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -198670,7 +198670,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Port": "System.Int32", @@ -198791,7 +198791,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -199206,7 +199206,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -199549,7 +199549,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -199654,7 +199654,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -199731,7 +199731,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Port": "System.Int32", @@ -199819,7 +199819,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -200169,7 +200169,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -200249,7 +200249,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -200383,7 +200383,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -200541,7 +200541,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -200801,7 +200801,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -200918,7 +200918,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -201007,7 +201007,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Port": "System.Int32", @@ -201720,7 +201720,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -201825,7 +201825,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -201902,7 +201902,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Port": "System.Int32", @@ -202257,7 +202257,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -202335,7 +202335,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -202469,7 +202469,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -202627,7 +202627,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -202705,7 +202705,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -202962,7 +202962,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -203079,7 +203079,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -203168,7 +203168,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Port": "System.Int32", @@ -203289,7 +203289,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -203704,7 +203704,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -204047,7 +204047,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -204152,7 +204152,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -204229,7 +204229,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Port": "System.Int32", @@ -204317,7 +204317,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -204667,7 +204667,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -204837,7 +204837,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", "GenericTypeArguments": [], @@ -204855,7 +204855,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", "GenericTypeArguments": [], @@ -204873,7 +204873,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule", "GenericTypeArguments": [], @@ -204891,7 +204891,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSProbe", "GenericTypeArguments": [], @@ -204909,7 +204909,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule", "GenericTypeArguments": [], @@ -204927,7 +204927,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool", "GenericTypeArguments": [], @@ -204945,7 +204945,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule", "GenericTypeArguments": [], @@ -205160,7 +205160,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", "GenericTypeArguments": [], @@ -205184,7 +205184,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", "GenericTypeArguments": [], @@ -205208,7 +205208,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule", "GenericTypeArguments": [], @@ -205232,7 +205232,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSProbe", "GenericTypeArguments": [], @@ -205256,7 +205256,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule", "GenericTypeArguments": [], @@ -205280,7 +205280,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool", "GenericTypeArguments": [], @@ -205304,7 +205304,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule", "GenericTypeArguments": [], @@ -205427,7 +205427,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -205505,7 +205505,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -205672,7 +205672,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -205708,7 +205708,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -205818,7 +205818,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -206021,7 +206021,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -206113,7 +206113,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -206316,7 +206316,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -206384,7 +206384,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -206461,7 +206461,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -206664,7 +206664,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -206739,7 +206739,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -206808,7 +206808,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -206942,7 +206942,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -207100,7 +207100,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -207259,7 +207259,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -207295,7 +207295,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -207525,7 +207525,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -207737,7 +207737,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -207805,7 +207805,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -208002,7 +208002,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -208077,7 +208077,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -208155,7 +208155,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -208289,7 +208289,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -208447,7 +208447,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -208525,7 +208525,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -208692,7 +208692,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -208728,7 +208728,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -208838,7 +208838,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -209041,7 +209041,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -209133,7 +209133,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -209336,7 +209336,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -209404,7 +209404,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -209481,7 +209481,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -209684,7 +209684,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -209759,7 +209759,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -209837,7 +209837,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -210061,7 +210061,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -210339,7 +210339,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Port": "System.Int32", @@ -210422,7 +210422,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -210556,7 +210556,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -210714,7 +210714,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Port": "System.Int32", @@ -211139,7 +211139,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -211217,7 +211217,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -211351,7 +211351,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -211509,7 +211509,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -211587,7 +211587,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -211811,7 +211811,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -212412,7 +212412,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -212490,7 +212490,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -212624,7 +212624,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -212782,7 +212782,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -213217,7 +213217,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -213386,7 +213386,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoute", "GenericTypeArguments": [], @@ -213601,7 +213601,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoute", "GenericTypeArguments": [], @@ -214047,7 +214047,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -214124,7 +214124,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -214311,7 +214311,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -214540,7 +214540,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressPrefix": "System.String", "NextHopType": "System.String", @@ -214599,7 +214599,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -214732,7 +214732,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -214889,7 +214889,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressPrefix": "System.String", "NextHopType": "System.String", @@ -215206,7 +215206,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -215283,7 +215283,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -215416,7 +215416,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -215573,7 +215573,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -215650,7 +215650,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -215837,7 +215837,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -216066,7 +216066,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -216143,7 +216143,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -216276,7 +216276,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -216433,7 +216433,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSUsage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSUsage, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSUsage, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceType": "System.String" }, @@ -216618,7 +216618,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", "IpAddresses": "System.Collections.Generic.List`1[System.String]", @@ -216678,7 +216678,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Network.Models.PSIpGroup]", - "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -217007,7 +217007,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", "IpAddresses": "System.Collections.Generic.List`1[System.String]", @@ -217520,7 +217520,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", "IpAddresses": "System.Collections.Generic.List`1[System.String]", @@ -217860,7 +217860,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", "IpAddresses": "System.Collections.Generic.List`1[System.String]", @@ -218308,7 +218308,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", "IpAddresses": "System.Collections.Generic.List`1[System.String]", @@ -218372,7 +218372,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", "IpAddresses": "System.Collections.Generic.List`1[System.String]", @@ -218492,7 +218492,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", "IpAddresses": "System.Collections.Generic.List`1[System.String]", @@ -218636,7 +218636,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -218881,7 +218881,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -219827,7 +219827,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -219894,7 +219894,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -220089,7 +220089,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -220332,7 +220332,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -220778,7 +220778,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -220976,7 +220976,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -220994,7 +220994,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -221257,7 +221257,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -221281,7 +221281,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -221461,7 +221461,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -221809,7 +221809,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -222265,7 +222265,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -222393,7 +222393,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -222462,7 +222462,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -222480,7 +222480,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -222621,7 +222621,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -222645,7 +222645,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -222787,7 +222787,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -222811,7 +222811,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -222929,7 +222929,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -223004,7 +223004,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -223028,7 +223028,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -223144,7 +223144,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -223168,7 +223168,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -223291,7 +223291,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Association": "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroupAssociation", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -223525,7 +223525,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSEffectiveRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "AddressPrefix": "System.Collections.Generic.List`1[System.String]", @@ -223800,7 +223800,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -224764,7 +224764,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -224876,7 +224876,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -225044,7 +225044,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -225175,7 +225175,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -225269,7 +225269,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", "GenericTypeArguments": [], @@ -225305,7 +225305,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule", "GenericTypeArguments": [], @@ -225341,7 +225341,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", "GenericTypeArguments": [], @@ -225377,7 +225377,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -225458,7 +225458,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -225844,7 +225844,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -226062,7 +226062,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -226181,7 +226181,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -226263,7 +226263,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", "GenericTypeArguments": [], @@ -226287,7 +226287,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule", "GenericTypeArguments": [], @@ -226311,7 +226311,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", "GenericTypeArguments": [], @@ -226335,7 +226335,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -226383,7 +226383,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -226608,7 +226608,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrivateLinkConnectionProperties": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation", "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", @@ -226722,7 +226722,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -226878,7 +226878,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -227028,7 +227028,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrivateLinkConnectionProperties": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation", "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", @@ -227217,7 +227217,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -227348,7 +227348,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -227442,7 +227442,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", "GenericTypeArguments": [], @@ -227478,7 +227478,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule", "GenericTypeArguments": [], @@ -227514,7 +227514,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", "GenericTypeArguments": [], @@ -227550,7 +227550,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -228037,7 +228037,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -228156,7 +228156,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -228238,7 +228238,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", "GenericTypeArguments": [], @@ -228262,7 +228262,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule", "GenericTypeArguments": [], @@ -228286,7 +228286,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", "GenericTypeArguments": [], @@ -228310,7 +228310,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -228484,7 +228484,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -228596,7 +228596,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -228752,7 +228752,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -228902,7 +228902,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -229014,7 +229014,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -229182,7 +229182,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -229313,7 +229313,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -229407,7 +229407,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", "GenericTypeArguments": [], @@ -229443,7 +229443,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule", "GenericTypeArguments": [], @@ -229479,7 +229479,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", "GenericTypeArguments": [], @@ -229515,7 +229515,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -229596,7 +229596,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -229982,7 +229982,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -230200,7 +230200,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -230319,7 +230319,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -230401,7 +230401,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", "GenericTypeArguments": [], @@ -230425,7 +230425,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule", "GenericTypeArguments": [], @@ -230449,7 +230449,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", "GenericTypeArguments": [], @@ -230473,7 +230473,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -230521,7 +230521,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -230746,7 +230746,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -230896,7 +230896,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", "GenericTypeArguments": [], @@ -230932,7 +230932,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -231063,7 +231063,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -231157,7 +231157,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -231264,7 +231264,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", "GenericTypeArguments": [], @@ -231300,7 +231300,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule", "GenericTypeArguments": [], @@ -231336,7 +231336,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", "GenericTypeArguments": [], @@ -231372,7 +231372,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -231877,7 +231877,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", "GenericTypeArguments": [], @@ -231925,7 +231925,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -232306,7 +232306,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", "GenericTypeArguments": [], @@ -233118,7 +233118,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -233237,7 +233237,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -233319,7 +233319,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -233414,7 +233414,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", "GenericTypeArguments": [], @@ -233438,7 +233438,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule", "GenericTypeArguments": [], @@ -233462,7 +233462,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", "GenericTypeArguments": [], @@ -233486,7 +233486,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -234174,7 +234174,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -234268,7 +234268,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -234418,7 +234418,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -234592,7 +234592,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -234686,7 +234686,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -234815,7 +234815,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", "DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", @@ -234921,7 +234921,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -235112,7 +235112,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -235279,7 +235279,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", "DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", @@ -235352,7 +235352,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -235526,7 +235526,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", "ResourceGroupName": "System.String", @@ -235931,7 +235931,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -236097,7 +236097,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", "ResourceGroupName": "System.String", @@ -236510,7 +236510,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", "ResourceGroupName": "System.String", @@ -236765,7 +236765,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -236859,7 +236859,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", "ResourceGroupName": "System.String", @@ -236992,7 +236992,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", "ResourceGroupName": "System.String", @@ -237159,7 +237159,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]", "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile]", @@ -237239,7 +237239,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile", "GenericTypeArguments": [], @@ -237322,7 +237322,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile", "GenericTypeArguments": [], @@ -237397,7 +237397,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]", "ContainerNetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]", @@ -237999,7 +237999,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]", "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile]", @@ -238077,7 +238077,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -238271,7 +238271,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -238482,7 +238482,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -238652,7 +238652,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]", "ContainerNetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]", @@ -238794,7 +238794,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration", "GenericTypeArguments": [], @@ -238987,7 +238987,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration", "GenericTypeArguments": [], @@ -239185,7 +239185,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]", "ContainerNetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]", @@ -239649,7 +239649,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]", "ContainerNetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]", @@ -239959,7 +239959,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]", "ContainerNetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]", @@ -240025,7 +240025,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]", "ContainerNetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]", @@ -240147,7 +240147,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]", "ContainerNetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]", @@ -240293,7 +240293,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -240741,7 +240741,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -240849,7 +240849,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -241053,7 +241053,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -241071,7 +241071,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -241248,7 +241248,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -241616,7 +241616,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -241640,7 +241640,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -241688,7 +241688,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -242128,7 +242128,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -242503,7 +242503,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SourcePortRange": "System.Collections.Generic.IList`1[System.String]", "DestinationPortRange": "System.Collections.Generic.IList`1[System.String]", @@ -242590,7 +242590,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -242760,7 +242760,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -242930,7 +242930,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SourcePortRange": "System.Collections.Generic.IList`1[System.String]", "DestinationPortRange": "System.Collections.Generic.IList`1[System.String]", @@ -243132,7 +243132,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -243150,7 +243150,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -243600,7 +243600,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -243624,7 +243624,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -244297,7 +244297,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -244405,7 +244405,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -244557,7 +244557,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -244703,7 +244703,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -244811,7 +244811,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -245015,7 +245015,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -245033,7 +245033,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -245210,7 +245210,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -245578,7 +245578,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -245602,7 +245602,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -245650,7 +245650,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -246090,7 +246090,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -246465,7 +246465,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -246611,7 +246611,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule", "GenericTypeArguments": [], @@ -246796,7 +246796,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule", "GenericTypeArguments": [], @@ -247266,7 +247266,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -247356,7 +247356,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -247502,7 +247502,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -247672,7 +247672,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Destination": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination", "Source": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource", @@ -247737,7 +247737,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "Outputs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]", @@ -247804,7 +247804,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -247996,7 +247996,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -248464,7 +248464,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorQueryResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorQueryResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorQueryResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "States": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot]", "StatesText": "System.String" @@ -248518,7 +248518,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -248651,7 +248651,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -248789,7 +248789,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -249302,7 +249302,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -249512,7 +249512,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Destination": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination", "Source": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource", @@ -249577,7 +249577,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "Outputs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]", @@ -249644,7 +249644,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -249889,7 +249889,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject", "GenericTypeArguments": [], @@ -249907,7 +249907,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject", "GenericTypeArguments": [], @@ -249943,7 +249943,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "Outputs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]", @@ -250115,7 +250115,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -250494,7 +250494,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -250587,7 +250587,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject", "GenericTypeArguments": [], @@ -250611,7 +250611,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject", "GenericTypeArguments": [], @@ -251209,7 +251209,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject", "GenericTypeArguments": [], @@ -251233,7 +251233,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject", "GenericTypeArguments": [], @@ -251783,7 +251783,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject", "GenericTypeArguments": [], @@ -251807,7 +251807,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject", "GenericTypeArguments": [], @@ -251971,7 +251971,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "Outputs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]", @@ -252229,7 +252229,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "System.String", "Address": "System.String" @@ -252415,7 +252415,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Filter": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilter", "Name": "System.String", @@ -252544,7 +252544,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem", "GenericTypeArguments": [], @@ -252717,7 +252717,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem", "GenericTypeArguments": [], @@ -252908,7 +252908,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "Outputs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]", @@ -252970,7 +252970,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -253105,7 +253105,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject", "GenericTypeArguments": [], @@ -253123,7 +253123,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject", "GenericTypeArguments": [], @@ -253216,7 +253216,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -253309,7 +253309,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject", "GenericTypeArguments": [], @@ -253333,7 +253333,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject", "GenericTypeArguments": [], @@ -253523,7 +253523,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject", "GenericTypeArguments": [], @@ -253547,7 +253547,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject", "GenericTypeArguments": [], @@ -253713,7 +253713,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject", "GenericTypeArguments": [], @@ -253737,7 +253737,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject", "GenericTypeArguments": [], @@ -253879,7 +253879,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject", "GenericTypeArguments": [], @@ -253903,7 +253903,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject", "GenericTypeArguments": [], @@ -254026,7 +254026,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "WorkspaceSettings": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorWorkspaceSettings", "Type": "System.String", @@ -254255,7 +254255,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ProtocolConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration", "SuccessThreshold": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorSuccessThreshold", @@ -254352,7 +254352,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -254549,7 +254549,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -254732,7 +254732,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sources": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]", "Destinations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]", @@ -254810,7 +254810,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -254830,7 +254830,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -254850,7 +254850,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -254951,7 +254951,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -254977,7 +254977,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -255003,7 +255003,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -255123,7 +255123,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -255256,7 +255256,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -255412,7 +255412,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -256021,7 +256021,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -256279,7 +256279,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Destination": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination", "Source": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource", @@ -256344,7 +256344,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "Outputs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]", @@ -256411,7 +256411,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -256544,7 +256544,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -256735,7 +256735,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject", "GenericTypeArguments": [], @@ -256753,7 +256753,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject", "GenericTypeArguments": [], @@ -256882,7 +256882,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -257237,7 +257237,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -257330,7 +257330,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject", "GenericTypeArguments": [], @@ -257354,7 +257354,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject", "GenericTypeArguments": [], @@ -257904,7 +257904,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject", "GenericTypeArguments": [], @@ -257928,7 +257928,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject", "GenericTypeArguments": [], @@ -258430,7 +258430,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject", "GenericTypeArguments": [], @@ -258454,7 +258454,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject", "GenericTypeArguments": [], @@ -258904,7 +258904,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject", "GenericTypeArguments": [], @@ -258928,7 +258928,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject", "GenericTypeArguments": [], @@ -259068,7 +259068,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -259297,7 +259297,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -259430,7 +259430,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -259586,7 +259586,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -260195,7 +260195,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -260472,7 +260472,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -260605,7 +260605,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -260761,7 +260761,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -261370,7 +261370,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -261628,7 +261628,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -261998,7 +261998,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLog", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLog, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLog, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters", "RetentionPolicy": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters", @@ -262059,7 +262059,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -262251,7 +262251,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -262767,7 +262767,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNextHopResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNextHopResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNextHopResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NextHopType": "System.String", "NextHopIpAddress": "System.String", @@ -262822,7 +262822,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -263068,7 +263068,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -263872,7 +263872,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityGroupViewResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityGroupViewResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityGroupViewResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView]", "NetworkInterfacesText": "System.String" @@ -263926,7 +263926,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -264118,7 +264118,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -264634,7 +264634,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTopology", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopology, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopology, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Resources": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTopologyResource]", "CreatedDateTime": "System.Nullable`1[System.DateTime]", @@ -264691,7 +264691,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -264865,7 +264865,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -265285,7 +265285,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Results": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails]", "Tag": "System.Collections.Hashtable", @@ -265356,7 +265356,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -265530,7 +265530,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -265950,7 +265950,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Results": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult]", "ResultsText": "System.String" @@ -266004,7 +266004,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -266175,7 +266175,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -266252,7 +266252,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -266367,7 +266367,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -266559,7 +266559,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -266725,7 +266725,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -266891,7 +266891,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -267033,7 +267033,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -267134,7 +267134,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Direction": "System.String", "Protocol": "System.String", @@ -267491,7 +267491,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -267815,7 +267815,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSGetPacketCaptureResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGetPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGetPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StorageLocation": "Microsoft.Azure.Commands.Network.Models.PSStorageLocation", "Filters": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter]", @@ -267899,7 +267899,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -268091,7 +268091,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -268607,7 +268607,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StorageLocation": "Microsoft.Azure.Commands.Network.Models.PSStorageLocation", "Filters": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter]", @@ -268681,7 +268681,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -268948,7 +268948,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter", "GenericTypeArguments": [], @@ -269023,7 +269023,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -269288,7 +269288,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter", "GenericTypeArguments": [], @@ -269628,7 +269628,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter", "GenericTypeArguments": [], @@ -269942,7 +269942,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter", "GenericTypeArguments": [], @@ -270232,7 +270232,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter", "GenericTypeArguments": [], @@ -270331,7 +270331,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Protocol": "System.String", "RemoteIPAddress": "System.String", @@ -270707,7 +270707,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -270917,7 +270917,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -271548,7 +271548,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -271758,7 +271758,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -272389,7 +272389,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -272581,7 +272581,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -273097,7 +273097,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLog", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLog, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLog, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters", "RetentionPolicy": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters", @@ -273158,7 +273158,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -273574,7 +273574,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -273957,7 +273957,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -274384,7 +274384,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -276984,7 +276984,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Results": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails]", "Tag": "System.Collections.Hashtable", @@ -277055,7 +277055,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -277265,7 +277265,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -277877,7 +277877,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectivityInformation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectivityInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectivityInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Hops": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop]", "AvgLatencyInMs": "System.Nullable`1[System.Int32]", @@ -277937,7 +277937,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -278144,7 +278144,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Header": "System.Collections.IDictionary", "ValidStatusCode": "System.Int32[]", @@ -278256,7 +278256,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -278443,7 +278443,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Header": "System.Collections.IDictionary", "ValidStatusCode": "System.Int32[]", @@ -278742,7 +278742,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Header": "System.Collections.IDictionary", "ValidStatusCode": "System.Int32[]", @@ -279015,7 +279015,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Header": "System.Collections.IDictionary", "ValidStatusCode": "System.Int32[]", @@ -279264,7 +279264,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Header": "System.Collections.IDictionary", "ValidStatusCode": "System.Int32[]", @@ -279400,7 +279400,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIPFlowVerifyResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPFlowVerifyResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPFlowVerifyResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Access": "System.String", "RuleName": "System.String" @@ -279454,7 +279454,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -279778,7 +279778,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -280990,7 +280990,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", @@ -281435,7 +281435,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", @@ -281576,7 +281576,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -281689,7 +281689,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection", "GenericTypeArguments": [], @@ -281892,7 +281892,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -282011,7 +282011,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection", "GenericTypeArguments": [], @@ -282182,7 +282182,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState", "GroupIds": "System.Collections.Generic.List`1[System.String]", @@ -282262,7 +282262,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", "AutoApproval": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", @@ -282547,7 +282547,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", "AutoApproval": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", @@ -283215,7 +283215,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", @@ -283300,7 +283300,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", @@ -283441,7 +283441,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", @@ -283606,7 +283606,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAutoApprovedPrivateLinkService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAutoApprovedPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAutoApprovedPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrivateLinkService": "System.String" }, @@ -283833,7 +283833,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", "AutoApproval": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", @@ -284268,7 +284268,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", "AutoApproval": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", @@ -284401,7 +284401,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", "GenericTypeArguments": [], @@ -284419,7 +284419,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration", "GenericTypeArguments": [], @@ -284658,7 +284658,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", "GenericTypeArguments": [], @@ -284682,7 +284682,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration", "GenericTypeArguments": [], @@ -284901,7 +284901,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint", "PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState", @@ -285444,7 +285444,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint", "PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState", @@ -285987,7 +285987,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint", "PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState", @@ -287411,7 +287411,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint", "PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState", @@ -288044,7 +288044,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RequiredMembers": "System.Collections.Generic.List`1[System.String]", "Name": "System.String", @@ -288278,7 +288278,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", @@ -288399,7 +288399,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -288475,7 +288475,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -288720,7 +288720,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -288802,7 +288802,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -289554,7 +289554,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", "AutoApproval": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", @@ -289631,7 +289631,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", "AutoApproval": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", @@ -289764,7 +289764,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", "AutoApproval": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", @@ -289921,7 +289921,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBgpServiceCommunity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpServiceCommunity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpServiceCommunity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BgpCommunities": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpCommunity]", "Name": "System.String", @@ -290069,7 +290069,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProvider", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BandwidthsOffered": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered]", "PeeringLocations": "System.Collections.Generic.List`1[System.String]", @@ -290416,7 +290416,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -291327,7 +291327,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -291541,7 +291541,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag", "GenericTypeArguments": [], @@ -291559,7 +291559,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]", @@ -291956,7 +291956,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag", "GenericTypeArguments": [], @@ -291980,7 +291980,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]", @@ -292252,7 +292252,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpTagType": "System.String", "Tag": "System.String" @@ -292803,7 +292803,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -292880,7 +292880,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -293013,7 +293013,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -293170,7 +293170,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]", @@ -293550,7 +293550,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]", @@ -293737,7 +293737,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag", "GenericTypeArguments": [], @@ -294017,7 +294017,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag", "GenericTypeArguments": [], @@ -294263,7 +294263,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]", @@ -294733,7 +294733,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]", @@ -295049,7 +295049,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]", @@ -295121,7 +295121,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]", @@ -295249,7 +295249,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]", @@ -295401,7 +295401,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -295835,7 +295835,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -295967,7 +295967,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule", "GenericTypeArguments": [], @@ -296152,7 +296152,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule", "GenericTypeArguments": [], @@ -296580,7 +296580,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -296656,7 +296656,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -296865,7 +296865,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -297122,7 +297122,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Communities": "System.Collections.Generic.List`1[System.String]", "Access": "System.String", @@ -297198,7 +297198,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -297336,7 +297336,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -297468,7 +297468,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Communities": "System.Collections.Generic.List`1[System.String]", "Access": "System.String", @@ -297836,7 +297836,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Communities": "System.Collections.Generic.List`1[System.String]", "Access": "System.String", @@ -297912,7 +297912,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -298068,7 +298068,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -298224,7 +298224,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -298300,7 +298300,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -298509,7 +298509,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -298766,7 +298766,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -298842,7 +298842,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -298992,7 +298992,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -299172,7 +299172,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -299552,7 +299552,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -299646,7 +299646,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition", "GenericTypeArguments": [], @@ -299781,7 +299781,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition", "GenericTypeArguments": [], @@ -300001,7 +300001,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -300407,7 +300407,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -300679,7 +300679,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -300773,7 +300773,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -300965,7 +300965,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -301173,7 +301173,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "serviceResources": "System.Collections.Generic.List`1[System.String]", "Description": "System.String", @@ -301250,7 +301250,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -301388,7 +301388,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -301520,7 +301520,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "serviceResources": "System.Collections.Generic.List`1[System.String]", "Description": "System.String", @@ -301841,7 +301841,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -301953,7 +301953,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "serviceResources": "System.Collections.Generic.List`1[System.String]", "Description": "System.String", @@ -302011,7 +302011,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -302149,7 +302149,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -302298,7 +302298,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -302423,7 +302423,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "serviceResources": "System.Collections.Generic.List`1[System.String]", "Description": "System.String", @@ -302487,7 +302487,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -302612,7 +302612,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -302744,7 +302744,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -302838,7 +302838,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -303030,7 +303030,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -303238,7 +303238,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -303314,7 +303314,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -303428,7 +303428,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -304080,7 +304080,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", "Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -304540,7 +304540,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -305116,7 +305116,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalAddressRanges": "System.String[]", "RemoteAddressRanges": "System.String[]" @@ -305348,7 +305348,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", "Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -305507,7 +305507,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -305585,7 +305585,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -305663,7 +305663,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -305806,7 +305806,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig", "MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig", @@ -305955,7 +305955,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -305973,7 +305973,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy", "GenericTypeArguments": [], @@ -306185,7 +306185,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -306269,7 +306269,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -306353,7 +306353,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -306598,7 +306598,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -306622,7 +306622,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy", "GenericTypeArguments": [], @@ -306887,7 +306887,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -306971,7 +306971,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -307055,7 +307055,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -307300,7 +307300,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -307324,7 +307324,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy", "GenericTypeArguments": [], @@ -307467,7 +307467,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig", "MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig", @@ -307648,7 +307648,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -307732,7 +307732,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -307816,7 +307816,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -308061,7 +308061,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -308085,7 +308085,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy", "GenericTypeArguments": [], @@ -309078,7 +309078,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "EndTime": "System.DateTime", @@ -309185,7 +309185,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", "Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -309508,7 +309508,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", "Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -309905,7 +309905,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "EndTime": "System.DateTime", @@ -310011,7 +310011,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", "Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -310333,7 +310333,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", "Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -310730,7 +310730,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", "Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -310815,7 +310815,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", "Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -310939,7 +310939,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -310957,7 +310957,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy", "GenericTypeArguments": [], @@ -311068,7 +311068,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", "Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -311210,7 +311210,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -311234,7 +311234,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy", "GenericTypeArguments": [], @@ -311374,7 +311374,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", "Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -311516,7 +311516,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -311540,7 +311540,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy", "GenericTypeArguments": [], @@ -311667,7 +311667,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -311746,7 +311746,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -311878,7 +311878,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -312009,7 +312009,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -312124,7 +312124,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -312348,7 +312348,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -312524,7 +312524,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -312643,7 +312643,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -312725,7 +312725,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -312908,7 +312908,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Thumbprint": "System.String", "ProvisioningState": "System.String", @@ -313227,7 +313227,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicCertData": "System.String", "ProvisioningState": "System.String", @@ -313787,7 +313787,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSGatewayRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Weight": "System.Nullable`1[System.Int32]", "LocalAddress": "System.String", @@ -314108,7 +314108,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBGPPeerStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBGPPeerStatus, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBGPPeerStatus, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Asn": "System.Nullable`1[System.Int32]", "RoutesReceived": "System.Nullable`1[System.Int64]", @@ -314430,7 +314430,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -314687,7 +314687,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSGatewayRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Weight": "System.Nullable`1[System.Int32]", "LocalAddress": "System.String", @@ -314966,7 +314966,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Thumbprint": "System.String", "ProvisioningState": "System.String", @@ -315243,7 +315243,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicCertData": "System.String", "ProvisioningState": "System.String", @@ -315520,7 +315520,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SaLifeTimeSeconds": "System.Int32", "SaDataSizeKilobytes": "System.Int32", @@ -316068,7 +316068,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -316616,7 +316616,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -316751,7 +316751,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration", "GenericTypeArguments": [], @@ -316883,7 +316883,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -316989,7 +316989,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate", "GenericTypeArguments": [], @@ -317007,7 +317007,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate", "GenericTypeArguments": [], @@ -317025,7 +317025,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -317420,7 +317420,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration", "GenericTypeArguments": [], @@ -317588,7 +317588,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -317712,7 +317712,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate", "GenericTypeArguments": [], @@ -317736,7 +317736,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate", "GenericTypeArguments": [], @@ -317760,7 +317760,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -318142,7 +318142,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration", "GenericTypeArguments": [], @@ -318310,7 +318310,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -318434,7 +318434,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate", "GenericTypeArguments": [], @@ -318458,7 +318458,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate", "GenericTypeArguments": [], @@ -318482,7 +318482,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -318792,7 +318792,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration", "GenericTypeArguments": [], @@ -318960,7 +318960,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -319084,7 +319084,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate", "GenericTypeArguments": [], @@ -319108,7 +319108,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate", "GenericTypeArguments": [], @@ -319132,7 +319132,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -319368,7 +319368,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration", "GenericTypeArguments": [], @@ -319536,7 +319536,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -319660,7 +319660,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate", "GenericTypeArguments": [], @@ -319684,7 +319684,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate", "GenericTypeArguments": [], @@ -319708,7 +319708,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -319951,7 +319951,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -320066,7 +320066,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -320197,7 +320197,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -320544,7 +320544,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -320663,7 +320663,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -320844,7 +320844,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VpnProfileSASUrl": "System.String" }, @@ -321255,7 +321255,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Thumbprint": "System.String", "ProvisioningState": "System.String", @@ -321486,7 +321486,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicCertData": "System.String", "ProvisioningState": "System.String", @@ -321772,7 +321772,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -321999,7 +321999,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -322569,7 +322569,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -322648,7 +322648,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -322765,7 +322765,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -322900,7 +322900,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -322979,7 +322979,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -323114,7 +323114,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -323835,7 +323835,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -323914,7 +323914,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -324067,7 +324067,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -324250,7 +324250,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -324329,7 +324329,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -324478,7 +324478,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -324651,7 +324651,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -324730,7 +324730,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -324808,7 +324808,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -324913,7 +324913,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -325041,7 +325041,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -325113,7 +325113,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -325248,7 +325248,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SaLifeTimeSeconds": "System.Int32", "SaDataSizeKilobytes": "System.Int32", @@ -325344,7 +325344,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SaLifeTimeSeconds": "System.Int32", "SaDataSizeKilobytes": "System.Int32", @@ -325403,7 +325403,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -325586,7 +325586,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SaLifeTimeSeconds": "System.Int32", "SaDataSizeKilobytes": "System.Int32", @@ -325695,7 +325695,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -325827,7 +325827,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SaLifeTimeSeconds": "System.Int32", "SaDataSizeKilobytes": "System.Int32", @@ -326008,7 +326008,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SaLifeTimeSeconds": "System.Int32", "SaDataSizeKilobytes": "System.Int32", @@ -326128,7 +326128,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -326207,7 +326207,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -326321,7 +326321,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -326427,7 +326427,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate", "GenericTypeArguments": [], @@ -326445,7 +326445,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate", "GenericTypeArguments": [], @@ -326463,7 +326463,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -326754,7 +326754,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -326880,7 +326880,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -327004,7 +327004,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate", "GenericTypeArguments": [], @@ -327028,7 +327028,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate", "GenericTypeArguments": [], @@ -327052,7 +327052,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -327336,7 +327336,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -327462,7 +327462,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -327586,7 +327586,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate", "GenericTypeArguments": [], @@ -327610,7 +327610,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate", "GenericTypeArguments": [], @@ -327634,7 +327634,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -327942,7 +327942,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -328068,7 +328068,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -328192,7 +328192,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate", "GenericTypeArguments": [], @@ -328216,7 +328216,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate", "GenericTypeArguments": [], @@ -328240,7 +328240,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -328548,7 +328548,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -328674,7 +328674,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -328798,7 +328798,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate", "GenericTypeArguments": [], @@ -328822,7 +328822,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate", "GenericTypeArguments": [], @@ -328846,7 +328846,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -329106,7 +329106,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -329232,7 +329232,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -329356,7 +329356,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate", "GenericTypeArguments": [], @@ -329380,7 +329380,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate", "GenericTypeArguments": [], @@ -329404,7 +329404,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -329651,7 +329651,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", "DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", @@ -330023,7 +330023,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", "DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", @@ -330199,7 +330199,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrivateLinkConnectionProperties": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation", "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", @@ -330312,7 +330312,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -330958,7 +330958,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrivateLinkConnectionProperties": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation", "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", @@ -331059,7 +331059,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -331456,7 +331456,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", "DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", @@ -331920,7 +331920,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", "DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", @@ -332232,7 +332232,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", "DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", @@ -332300,7 +332300,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", "DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", @@ -332424,7 +332424,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", "DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", @@ -332572,7 +332572,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -333006,7 +333006,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -333174,7 +333174,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSSubnet", "GenericTypeArguments": [], @@ -333461,7 +333461,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSSubnet", "GenericTypeArguments": [], @@ -333680,7 +333680,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -333767,7 +333767,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -334013,7 +334013,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -334289,7 +334289,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -334935,7 +334935,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -335004,7 +335004,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -335129,7 +335129,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -335601,7 +335601,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -335677,7 +335677,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -335809,7 +335809,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -335965,7 +335965,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -336059,7 +336059,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -336170,7 +336170,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -336277,7 +336277,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -336375,7 +336375,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -336462,7 +336462,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", "GenericTypeArguments": [], @@ -336480,7 +336480,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation", "GenericTypeArguments": [], @@ -336597,7 +336597,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -336726,7 +336726,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", "GenericTypeArguments": [], @@ -336750,7 +336750,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation", "GenericTypeArguments": [], @@ -336964,7 +336964,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -337093,7 +337093,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", "GenericTypeArguments": [], @@ -337117,7 +337117,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation", "GenericTypeArguments": [], @@ -337233,7 +337233,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -337328,7 +337328,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -337412,7 +337412,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -337511,7 +337511,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -337640,7 +337640,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", "GenericTypeArguments": [], @@ -337664,7 +337664,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation", "GenericTypeArguments": [], @@ -337787,7 +337787,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -337937,7 +337937,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -338137,7 +338137,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -338311,7 +338311,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Actions": "System.Collections.Generic.List`1[System.String]", "ProvisioningState": "System.String", @@ -338387,7 +338387,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -338563,7 +338563,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -338733,7 +338733,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -338865,7 +338865,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -339021,7 +339021,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -339265,7 +339265,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -339433,7 +339433,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -339540,7 +339540,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -339638,7 +339638,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -339725,7 +339725,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", "GenericTypeArguments": [], @@ -339743,7 +339743,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation", "GenericTypeArguments": [], @@ -339908,7 +339908,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", "GenericTypeArguments": [], @@ -339932,7 +339932,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation", "GenericTypeArguments": [], @@ -340194,7 +340194,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", "GenericTypeArguments": [], @@ -340218,7 +340218,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation", "GenericTypeArguments": [], @@ -340334,7 +340334,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -340429,7 +340429,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -340513,7 +340513,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -340660,7 +340660,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", "GenericTypeArguments": [], @@ -340684,7 +340684,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation", "GenericTypeArguments": [], @@ -340807,7 +340807,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -340901,7 +340901,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -341039,7 +341039,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -341171,7 +341171,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -341265,7 +341265,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -341376,7 +341376,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -341483,7 +341483,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -341581,7 +341581,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -341668,7 +341668,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", "GenericTypeArguments": [], @@ -341686,7 +341686,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation", "GenericTypeArguments": [], @@ -341803,7 +341803,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -341932,7 +341932,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", "GenericTypeArguments": [], @@ -341956,7 +341956,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation", "GenericTypeArguments": [], @@ -342170,7 +342170,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -342299,7 +342299,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", "GenericTypeArguments": [], @@ -342323,7 +342323,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation", "GenericTypeArguments": [], @@ -342439,7 +342439,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -342534,7 +342534,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -342618,7 +342618,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -342717,7 +342717,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -342846,7 +342846,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", "GenericTypeArguments": [], @@ -342870,7 +342870,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation", "GenericTypeArguments": [], @@ -342993,7 +342993,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIPAddressAvailabilityResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPAddressAvailabilityResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPAddressAvailabilityResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Available": "System.Boolean", "AvailableIPAddresses": "System.Collections.Generic.List`1[System.String]", @@ -343048,7 +343048,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -343216,7 +343216,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -343556,7 +343556,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostedGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]", @@ -344202,7 +344202,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PeerIp": "System.String", "ProvisioningState": "System.String", @@ -344611,7 +344611,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostedGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]", @@ -344735,7 +344735,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PeerIp": "System.String", "ProvisioningState": "System.String", @@ -345052,7 +345052,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PeerIp": "System.String", "ProvisioningState": "System.String", @@ -345423,7 +345423,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostedGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]", @@ -345583,7 +345583,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PeerIp": "System.String", "ProvisioningState": "System.String", @@ -346088,7 +346088,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PeerIp": "System.String", "ProvisioningState": "System.String", @@ -346467,7 +346467,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostedGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]", @@ -346843,7 +346843,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostedGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]", @@ -346949,7 +346949,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -347346,7 +347346,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -347898,7 +347898,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostedGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]", @@ -348242,7 +348242,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostedGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]", @@ -348694,7 +348694,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Actions": "System.Collections.Generic.List`1[System.String]", "ProvisioningState": "System.String", @@ -348930,7 +348930,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -349062,7 +349062,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -349238,7 +349238,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -349408,7 +349408,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VpnProfileSASUrl": "System.String" }, @@ -349639,7 +349639,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SaLifeTimeSeconds": "System.Int32", "SaDataSizeKilobytes": "System.Int32", @@ -349877,7 +349877,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealthDetail", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealthDetail, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealthDetail, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VpnConnectionDuration": "System.Nullable`1[System.Int64]", "MaxBandwidth": "System.Nullable`1[System.Int64]", @@ -349983,7 +349983,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -350350,7 +350350,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -350577,7 +350577,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "EndTime": "System.DateTime", @@ -350684,7 +350684,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -351001,7 +351001,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -351392,7 +351392,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "EndTime": "System.DateTime", @@ -351499,7 +351499,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -351816,7 +351816,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -352207,7 +352207,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTcpConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTcpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTcpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableTraceRoute": "System.Nullable`1[System.Boolean]", "Port": "System.Nullable`1[System.Int32]" @@ -352257,7 +352257,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorHttpConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorHttpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorHttpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RequestHeaders": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHTTPHeader]", "ValidStatusCodeRanges": "System.Collections.Generic.List`1[System.String]", @@ -352313,7 +352313,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorIcmpConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorIcmpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorIcmpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableTraceRoute": "System.Nullable`1[System.Boolean]" }, @@ -353062,7 +353062,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Header": "System.Collections.IDictionary", "ValidStatusCode": "System.Int32[]", @@ -353376,7 +353376,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "EnableInternetSecurity": "System.Boolean", @@ -353487,7 +353487,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -353758,7 +353758,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -354076,7 +354076,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "EnableInternetSecurity": "System.Boolean", @@ -354227,7 +354227,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "EnableInternetSecurity": "System.Boolean", @@ -354331,7 +354331,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -354450,7 +354450,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection", "GenericTypeArguments": [], @@ -354671,7 +354671,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -354814,7 +354814,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection", "GenericTypeArguments": [], @@ -355006,7 +355006,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -355149,7 +355149,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection", "GenericTypeArguments": [], @@ -355269,7 +355269,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "EnableInternetSecurity": "System.Boolean", @@ -355391,7 +355391,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -355534,7 +355534,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection", "GenericTypeArguments": [], @@ -355700,7 +355700,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -355843,7 +355843,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection", "GenericTypeArguments": [], @@ -355968,7 +355968,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId", "EnableInternetSecurity": "System.Boolean", @@ -356067,7 +356067,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", @@ -356335,7 +356335,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", @@ -356654,7 +356654,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId", "EnableInternetSecurity": "System.Boolean", @@ -356794,7 +356794,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId", "EnableInternetSecurity": "System.Boolean", @@ -357354,7 +357354,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId", "EnableInternetSecurity": "System.Boolean", @@ -357711,7 +357711,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBastion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]", "Tag": "System.Collections.Hashtable", @@ -357791,7 +357791,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Network.Models.PSBastion]", - "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -358194,7 +358194,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBastion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]", "Tag": "System.Collections.Hashtable", @@ -358319,7 +358319,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -358455,7 +358455,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -358808,7 +358808,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -358892,7 +358892,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -359118,7 +359118,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -359395,7 +359395,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -359674,7 +359674,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -360364,7 +360364,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -361118,7 +361118,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBastion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]", "Tag": "System.Collections.Hashtable", @@ -361442,7 +361442,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBastion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]", "Tag": "System.Collections.Hashtable", @@ -361840,7 +361840,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PsAvailableServiceAlias", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PsAvailableServiceAlias, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PsAvailableServiceAlias, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Id": "System.String", @@ -362028,7 +362028,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAvailableDelegation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Actions": "System.Collections.Generic.List`1[System.String]", "Name": "System.String", @@ -362217,7 +362217,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDdosProtectionPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDdosProtectionPlan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDdosProtectionPlan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualNetworks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Tag": "System.Collections.Hashtable", @@ -362503,7 +362503,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSEndpointServiceResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEndpointServiceResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEndpointServiceResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Id": "System.String", @@ -362690,7 +362690,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTag", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Values": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation]", "Name": "System.String", @@ -362880,7 +362880,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersList", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersList, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersList, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Countries": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry]", "CountriesText": "System.String" @@ -362934,7 +362934,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -363199,7 +363199,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -364192,7 +364192,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReport", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReport, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReport, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ProviderLocation": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLocation", "ReachabilityReport": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem]", @@ -364249,7 +364249,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -364568,7 +364568,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -365921,7 +365921,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkUsage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkUsage, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkUsage, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "Microsoft.Azure.Commands.Network.Models.PSUsageName", "CurrentValue": "System.Double", @@ -366284,7 +366284,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MinCapacity": "System.Int32", "MaxCapacity": "System.Nullable`1[System.Int32]" @@ -366351,7 +366351,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Capacity": "System.Nullable`1[System.Int32]", "Tier": "System.String", @@ -366397,7 +366397,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", "CipherSuites": "System.Collections.Generic.List`1[System.String]", @@ -366459,7 +366459,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]", @@ -366513,7 +366513,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -366525,7 +366525,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Rules": "System.Collections.Generic.List`1[System.Int32]", "RuleGroupName": "System.String", @@ -366583,7 +366583,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -366595,7 +366595,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MatchVariable": "System.String", "SelectorMatchOperator": "System.String", @@ -366653,7 +366653,7 @@ "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", @@ -366700,7 +366700,7 @@ "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", - "AssemblyQualifiedName": "System.Collections.Generic.Dictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.Dictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -366713,7 +366713,7 @@ "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrincipalId": "System.String", "ClientId": "System.String" @@ -366875,7 +366875,7 @@ "Microsoft.Azure.Commands.Network.Models.PSResourceId": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Id": "System.String" }, @@ -366919,7 +366919,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -366931,7 +366931,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Data": "System.String", "ProvisioningState": "System.String", @@ -366980,7 +366980,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -366992,7 +366992,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -367054,7 +367054,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -367066,7 +367066,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Fqdn": "System.String", "IpAddress": "System.String" @@ -367111,7 +367111,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -367123,7 +367123,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrivateLinkConnectionProperties": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation", "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", @@ -367210,7 +367210,7 @@ "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Fqdns": "System.Collections.Generic.List`1[System.String]", "RequiredMemberName": "System.String", @@ -367256,7 +367256,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -367324,7 +367324,7 @@ "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", @@ -367377,7 +367377,7 @@ "Microsoft.Azure.Commands.Network.Models.PSSubnet": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -367482,7 +367482,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -367563,7 +367563,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -367575,7 +367575,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -367660,7 +367660,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsServers": "System.Collections.Generic.List`1[System.String]", "AppliedDnsServers": "System.Collections.Generic.List`1[System.String]", @@ -367710,7 +367710,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -367722,7 +367722,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", "ResourceGroupName": "System.String", @@ -367772,7 +367772,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", "DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", @@ -367831,7 +367831,7 @@ "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -367922,7 +367922,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -367944,7 +367944,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -367956,7 +367956,7 @@ "Microsoft.Azure.Commands.Network.Models.PSSecurityRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SourcePortRange": "System.Collections.Generic.IList`1[System.String]", "DestinationPortRange": "System.Collections.Generic.IList`1[System.String]", @@ -368028,7 +368028,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -368040,7 +368040,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -368093,7 +368093,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -368105,7 +368105,7 @@ "Microsoft.Azure.Commands.Network.Models.PSRouteTable": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -368173,7 +368173,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -368185,7 +368185,7 @@ "Microsoft.Azure.Commands.Network.Models.PSRoute": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressPrefix": "System.String", "NextHopType": "System.String", @@ -368235,7 +368235,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -368247,7 +368247,7 @@ "Microsoft.Azure.Commands.Network.Models.PSDelegation": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Actions": "System.Collections.Generic.List`1[System.String]", "ProvisioningState": "System.String", @@ -368296,7 +368296,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -368308,7 +368308,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -368320,7 +368320,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", @@ -368396,7 +368396,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -368408,7 +368408,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState", "GroupIds": "System.Collections.Generic.List`1[System.String]", @@ -368461,7 +368461,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Status": "System.String", "Description": "System.String", @@ -368507,7 +368507,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -368519,7 +368519,7 @@ "Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LinkedResourceType": "System.String", "Link": "System.String", @@ -368568,7 +368568,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -368580,7 +368580,7 @@ "Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LinkedResourceType": "System.String", "Link": "System.String", @@ -368629,7 +368629,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -368641,7 +368641,7 @@ "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Locations": "System.Collections.Generic.List`1[System.String]", "Service": "System.String", @@ -368687,7 +368687,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -368699,7 +368699,7 @@ "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -368766,7 +368766,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -368778,7 +368778,7 @@ "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "serviceResources": "System.Collections.Generic.List`1[System.String]", "Description": "System.String", @@ -368828,7 +368828,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DomainNameLabel": "System.String", "Fqdn": "System.String", @@ -368874,7 +368874,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String" }, @@ -368918,7 +368918,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -368930,7 +368930,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpTagType": "System.String", "Tag": "System.String" @@ -368975,7 +368975,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -368987,7 +368987,7 @@ "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -369050,7 +369050,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -369062,7 +369062,7 @@ "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", "FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -369129,7 +369129,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -369141,7 +369141,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -369153,7 +369153,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -369231,7 +369231,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "DrainTimeoutInSec": "System.Int32" @@ -369276,7 +369276,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -369288,7 +369288,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCode": "System.String", "CustomErrorPageUrl": "System.String" @@ -369333,7 +369333,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -369345,7 +369345,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -369399,7 +369399,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -369411,7 +369411,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Port": "System.Int32", "ProvisioningState": "System.String", @@ -369460,7 +369460,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -369472,7 +369472,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -369533,7 +369533,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -369545,7 +369545,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "ProvisioningState": "System.String", @@ -369595,7 +369595,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -369607,7 +369607,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", "PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]", @@ -369666,7 +369666,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCodes": "System.Collections.Generic.List`1[System.String]", "Body": "System.String", @@ -369712,7 +369712,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -369724,7 +369724,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -369783,7 +369783,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -369795,7 +369795,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -369856,7 +369856,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -369868,7 +369868,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -369923,7 +369923,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -369935,7 +369935,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ActionSet": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet", "Conditions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition]", @@ -369985,7 +369985,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UrlConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration", "RequestHeaderConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", @@ -370034,7 +370034,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Reroute": "System.Boolean", "ModifiedQueryString": "System.String", @@ -370080,7 +370080,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -370092,7 +370092,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HeaderName": "System.String", "HeaderValue": "System.String" @@ -370137,7 +370137,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -370149,7 +370149,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IgnoreCase": "System.Nullable`1[System.Boolean]", "Negate": "System.Nullable`1[System.Boolean]", @@ -370196,7 +370196,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -370208,7 +370208,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Password": "System.Security.SecureString", "Data": "System.String", @@ -370270,7 +370270,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -370282,7 +370282,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Data": "System.String", "ProvisioningState": "System.String", @@ -370331,7 +370331,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -370343,7 +370343,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -370400,7 +370400,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -370412,7 +370412,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -370649,7 +370649,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -370661,7 +370661,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup]", "Tag": "System.Collections.Hashtable", @@ -370718,7 +370718,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -370730,7 +370730,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule]", "RuleGroupName": "System.String", @@ -370777,7 +370777,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -370789,7 +370789,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleId": "System.Int32", "Description": "System.String" @@ -370834,7 +370834,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -370846,7 +370846,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings]", @@ -370893,7 +370893,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -370905,7 +370905,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", "Servers": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer]", @@ -370952,7 +370952,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -370964,7 +370964,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", "Address": "System.String", @@ -371011,7 +371011,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]", "ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]" @@ -371056,7 +371056,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -371068,7 +371068,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MatchVariable": "System.String", "SelectorMatchOperator": "System.String", @@ -371114,7 +371114,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -371126,7 +371126,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleGroupOverrides": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride]", "RuleSetVersion": "System.String", @@ -371172,7 +371172,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -371184,7 +371184,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride]", "RuleGroupName": "System.String" @@ -371229,7 +371229,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -371241,7 +371241,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleId": "System.String", "State": "System.String" @@ -371286,7 +371286,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RequestBodyCheck": "System.Boolean", "MaxRequestBodySizeInKb": "System.Int32", @@ -371334,7 +371334,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -371346,7 +371346,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MatchConditions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition]", "Priority": "System.Int32", @@ -371395,7 +371395,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -371407,7 +371407,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MatchVariables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable]", "MatchValues": "System.Collections.Generic.List`1[System.String]", @@ -371458,7 +371458,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -371470,7 +371470,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VariableName": "System.String", "Selector": "System.String" @@ -371515,7 +371515,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "FqdnTagName": "System.String", @@ -371568,7 +371568,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -371580,7 +371580,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ProtocolType": "System.String", "Port": "System.UInt32" @@ -371635,7 +371635,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -371647,7 +371647,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "RuleCollectionType": "System.String", @@ -371693,7 +371693,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "RuleType": "System.String" @@ -371804,7 +371804,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "System.String" }, @@ -371848,7 +371848,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -371860,7 +371860,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Protocols": "System.Collections.Generic.List`1[System.String]", "SourceAddresses": "System.Collections.Generic.List`1[System.String]", @@ -371929,7 +371929,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection]", "Name": "System.String", @@ -371987,7 +371987,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -371999,7 +371999,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Protocols": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol]", "SourceAddresses": "System.Collections.Generic.List`1[System.String]", @@ -372068,7 +372068,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -372080,7 +372080,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ProtocolType": "System.String", "Port": "System.UInt32" @@ -372140,7 +372140,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -372191,7 +372191,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Tier": "System.String" @@ -372236,7 +372236,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FQDNs": "System.String[]", "IpAddresses": "System.String[]" @@ -372291,7 +372291,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -372303,7 +372303,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Action": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule]", @@ -372384,7 +372384,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -372396,7 +372396,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -372408,7 +372408,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Action": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRCAction", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule]", @@ -372489,7 +372489,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRCAction": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRCAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRCAction, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRCAction, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "System.String" }, @@ -372533,7 +372533,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -372545,7 +372545,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Protocols": "System.Collections.Generic.List`1[System.String]", "SourceAddresses": "System.Collections.Generic.List`1[System.String]", @@ -372613,7 +372613,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -372625,7 +372625,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Action": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule]", @@ -372706,7 +372706,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku", @@ -372985,7 +372985,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAddressSpace": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressPrefixes": "System.Collections.Generic.List`1[System.String]", "AddressPrefixesText": "System.String" @@ -373030,7 +373030,7 @@ "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsServers": "System.Collections.Generic.List`1[System.String]", "DnsServersText": "System.String" @@ -373075,7 +373075,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualNetworkCommunity": "System.String", "RegionalCommunity": "System.String" @@ -373125,7 +373125,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -373137,7 +373137,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -373197,7 +373197,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Id": "System.String" }, @@ -373241,7 +373241,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Bounds": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayPropertiesAutoScaleConfigurationBounds", "BoundsText": "System.String" @@ -373286,7 +373286,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayPropertiesAutoScaleConfigurationBounds": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayPropertiesAutoScaleConfigurationBounds", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayPropertiesAutoScaleConfigurationBounds, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayPropertiesAutoScaleConfigurationBounds, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Min": "System.Int32", "Max": "System.Int32" @@ -373331,7 +373331,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Id": "System.String" }, @@ -373375,7 +373375,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -373387,7 +373387,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId", "EnableInternetSecurity": "System.Boolean", @@ -373439,7 +373439,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", "Connections": "System.Collections.Generic.List`1[System.String]", @@ -373488,7 +373488,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -373500,7 +373500,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressPrefixes": "System.Collections.Generic.List`1[System.String]", "Destinations": "System.Collections.Generic.List`1[System.String]", @@ -373549,7 +373549,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -373561,7 +373561,7 @@ "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "EnableInternetSecurity": "System.Boolean", @@ -373610,7 +373610,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -373622,7 +373622,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllocatedIpAddresses": "System.Collections.Generic.List`1[System.String]", "VpnClientConnectionsCount": "System.Int32", @@ -373670,7 +373670,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -373682,7 +373682,7 @@ "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VpnClientAddressPool": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "ProvisioningState": "System.String", @@ -373731,7 +373731,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadTenant": "System.String", "AadAudience": "System.String", @@ -373777,7 +373777,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSClientCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSClientCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -373789,7 +373789,7 @@ "Microsoft.Azure.Commands.Network.Models.PSClientCertificate": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSClientCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Thumbprint": "System.String" @@ -373834,7 +373834,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -373846,7 +373846,7 @@ "Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "PublicCertData": "System.String" @@ -373891,7 +373891,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -373903,7 +373903,7 @@ "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -373954,7 +373954,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVpnSite": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -374013,7 +374013,7 @@ "Microsoft.Azure.Commands.Network.Models.PSBgpSettings": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PeerWeight": "System.Nullable`1[System.Int32]", "Asn": "System.Nullable`1[System.Int64]", @@ -374071,7 +374071,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVpnSiteDeviceProperties": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteDeviceProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteDeviceProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteDeviceProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LinkSpeedInMbps": "System.Int32", "DeviceVendor": "System.String", @@ -374117,7 +374117,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -374129,7 +374129,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BgpProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings", "LinkProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties", @@ -374180,7 +374180,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Asn": "System.Nullable`1[System.Int64]", "BgpPeeringAddress": "System.String" @@ -374225,7 +374225,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LinkSpeedInMbps": "System.Int32", "LinkProviderName": "System.String" @@ -374270,7 +374270,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -374282,7 +374282,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VpnSiteLink": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "EnableBgp": "System.Boolean", @@ -374341,7 +374341,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnConnection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnConnection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -374353,7 +374353,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVpnConnection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "EnableInternetSecurity": "System.Boolean", @@ -374413,7 +374413,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Tier": "System.String", @@ -374459,7 +374459,7 @@ "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BandwidthInMbps": "System.Int32", "PeeringLocation": "System.String", @@ -374505,7 +374505,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -374517,7 +374517,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AuthorizationKey": "System.String", "AuthorizationUseStatus": "System.String", @@ -374566,7 +374566,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -374578,7 +374578,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPeering": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig", "MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig", @@ -374647,7 +374647,7 @@ "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig", "RouteFilter": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", @@ -374700,7 +374700,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AdvertisedPublicPrefixes": "System.Collections.Generic.List`1[System.String]", "AdvertisedCommunities": "System.Collections.Generic.List`1[System.String]", @@ -374751,7 +374751,7 @@ "Microsoft.Azure.Commands.Network.Models.PSRouteFilter": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -374818,7 +374818,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -374830,7 +374830,7 @@ "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Communities": "System.Collections.Generic.List`1[System.String]", "Access": "System.String", @@ -374879,7 +374879,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -374891,7 +374891,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PeerExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -374945,7 +374945,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -374957,7 +374957,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PeerExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -375024,7 +375024,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -375036,7 +375036,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MacSecConfig": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLinkMacSecConfig", "RouterName": "System.String", @@ -375091,7 +375091,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLinkMacSecConfig": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLinkMacSecConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLinkMacSecConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLinkMacSecConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CknSecretIdentifier": "System.String", "CakSecretIdentifier": "System.String", @@ -375137,7 +375137,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Id": "System.String" }, @@ -375181,7 +375181,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -375193,7 +375193,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig", "MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig", @@ -375256,7 +375256,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -375268,7 +375268,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ValueInGbps": "System.Nullable`1[System.Int32]", "OfferName": "System.String" @@ -375313,7 +375313,7 @@ "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String" }, @@ -375357,7 +375357,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -375369,7 +375369,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -375381,7 +375381,7 @@ "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPortRangeStart": "System.Int32", @@ -375452,7 +375452,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -375464,7 +375464,7 @@ "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -375535,7 +375535,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -375547,7 +375547,7 @@ "Microsoft.Azure.Commands.Network.Models.PSOutboundRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -375607,7 +375607,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -375619,7 +375619,7 @@ "Microsoft.Azure.Commands.Network.Models.PSProbe": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Port": "System.Int32", @@ -375693,7 +375693,7 @@ "Microsoft.Azure.Commands.Network.Models.PSIpGroup": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", "IpAddresses": "System.Collections.Generic.List`1[System.String]", @@ -375748,7 +375748,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String" }, @@ -375792,7 +375792,7 @@ "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroupAssociation": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroupAssociation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroupAssociation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroupAssociation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterface": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -375852,7 +375852,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -375864,7 +375864,7 @@ "Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SourcePortRange": "System.Collections.Generic.IList`1[System.String]", "DestinationPortRange": "System.Collections.Generic.IList`1[System.String]", @@ -375918,7 +375918,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -375930,7 +375930,7 @@ "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Container": "Microsoft.Azure.Commands.Network.Models.PSContainer", "ContainerNetworkInterfaceConfiguration": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration", @@ -375983,7 +375983,7 @@ "Microsoft.Azure.Commands.Network.Models.PSContainer": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Id": "System.String" }, @@ -376027,7 +376027,7 @@ "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]", "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile]", @@ -376078,7 +376078,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -376090,7 +376090,7 @@ "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", "ProvisioningState": "System.String", @@ -376139,7 +376139,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -376151,7 +376151,7 @@ "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", @@ -376204,7 +376204,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -376216,7 +376216,7 @@ "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Port": "System.Int32", "Address": "System.String", @@ -376262,7 +376262,7 @@ "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Port": "System.Nullable`1[System.Int32]", "ResourceId": "System.String" @@ -376342,7 +376342,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -376354,7 +376354,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "WorkspaceSettings": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorWorkspaceSettings", "Type": "System.String", @@ -376400,7 +376400,7 @@ "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorWorkspaceSettings": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorWorkspaceSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorWorkspaceSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorWorkspaceSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "WorkspaceResourceId": "System.String" }, @@ -376444,7 +376444,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -376456,7 +376456,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sources": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]", "Destinations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]", @@ -376507,7 +376507,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -376519,7 +376519,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Filter": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilter", "Name": "System.String", @@ -376567,7 +376567,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilter": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Items": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem]", "Type": "System.String", @@ -376613,7 +376613,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -376625,7 +376625,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "System.String", "Address": "System.String" @@ -376670,7 +376670,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -376682,7 +376682,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ProtocolConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration", "SuccessThreshold": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorSuccessThreshold", @@ -376732,7 +376732,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -376774,7 +376774,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorSuccessThreshold": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorSuccessThreshold", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorSuccessThreshold, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorSuccessThreshold, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ChecksFailedPercent": "System.Nullable`1[System.Int32]", "RoundTripTimeMs": "System.Nullable`1[System.Int32]" @@ -376819,7 +376819,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -376831,7 +376831,7 @@ "Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Hops": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -376880,7 +376880,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -376892,7 +376892,7 @@ "Microsoft.Azure.Commands.Network.Models.PSConnectivityHop": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectivityHop", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectivityHop, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectivityHop, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Issues": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue]", "NextHopIds": "System.Collections.Generic.List`1[System.String]", @@ -376942,7 +376942,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -376954,7 +376954,7 @@ "Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "System.Collections.Generic.List`1[System.Collections.Generic.Dictionary`2[System.String,System.String]]", "Origin": "System.String", @@ -377013,7 +377013,7 @@ "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Version": "System.Nullable`1[System.Int32]", "Type": "System.String" @@ -377058,7 +377058,7 @@ "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Nullable`1[System.Boolean]", "Days": "System.Nullable`1[System.Int32]" @@ -377103,7 +377103,7 @@ "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsProperties": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkWatcherFlowAnalyticsConfiguration": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsConfigurationProperties" }, @@ -377152,7 +377152,7 @@ "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsConfigurationProperties": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsConfigurationProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsConfigurationProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsConfigurationProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "TrafficAnalyticsInterval": "System.Nullable`1[System.Int32]", @@ -377205,7 +377205,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -377217,7 +377217,7 @@ "Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EffectiveSecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule]", "NetworkInterfaceSecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -377269,7 +377269,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTopologyResource]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTopologyResource]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTopologyResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTopologyResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -377281,7 +377281,7 @@ "Microsoft.Azure.Commands.Network.Models.PSTopologyResource": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTopologyResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopologyResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopologyResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Associations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation]", "Name": "System.String", @@ -377329,7 +377329,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -377341,7 +377341,7 @@ "Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AssociationType": "System.String", "Name": "System.String", @@ -377387,7 +377387,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -377399,7 +377399,7 @@ "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecommendedActions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions]", "Id": "System.String", @@ -377448,7 +377448,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -377460,7 +377460,7 @@ "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ActionId": "System.String", "ActionText": "System.String", @@ -377507,7 +377507,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -377519,7 +377519,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Profile": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile", "NetworkSecurityGroupResult": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroupResult" @@ -377564,7 +377564,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Direction": "System.String", "Protocol": "System.String", @@ -377612,7 +377612,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroupResult": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroupResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroupResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroupResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EvaluatedNetworkSecurityGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup]", "SecurityRuleAccessResult": "System.String", @@ -377658,7 +377658,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -377670,7 +377670,7 @@ "Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MatchedRule": "Microsoft.Azure.Commands.Network.Models.PSMatchedRule", "RulesEvaluationResult": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult]", @@ -377718,7 +377718,7 @@ "Microsoft.Azure.Commands.Network.Models.PSMatchedRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSMatchedRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSMatchedRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSMatchedRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleName": "System.String", "Action": "System.String" @@ -377763,7 +377763,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -377775,7 +377775,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ProtocolMatched": "System.Boolean", "SourceMatched": "System.Boolean", @@ -377824,7 +377824,7 @@ "Microsoft.Azure.Commands.Network.Models.PSStorageLocation": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSStorageLocation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSStorageLocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSStorageLocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StorageId": "System.String", "StoragePath": "System.String", @@ -377870,7 +377870,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -377882,7 +377882,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Protocol": "System.String", "RemoteIPAddress": "System.String", @@ -377952,7 +377952,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -377984,7 +377984,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subscriptions": "System.Collections.Generic.List`1[System.String]", "SubscriptionsText": "System.String" @@ -378029,7 +378029,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -378041,7 +378041,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint", "PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState", @@ -378093,7 +378093,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -378105,7 +378105,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", @@ -378160,7 +378160,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpCommunity]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpCommunity]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSBgpCommunity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSBgpCommunity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -378172,7 +378172,7 @@ "Microsoft.Azure.Commands.Network.Models.PSBgpCommunity": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBgpCommunity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpCommunity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpCommunity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsAuthorizedToUse": "System.Boolean", "CommunityPrefixes": "System.Collections.Generic.List`1[System.String]", @@ -378222,7 +378222,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -378234,7 +378234,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ValueInMbps": "System.Int32", "OfferName": "System.String" @@ -378279,7 +378279,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String" }, @@ -378323,7 +378323,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -378335,7 +378335,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -378347,7 +378347,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpTagType": "System.String", "Tag": "System.String" @@ -378392,7 +378392,7 @@ "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -378450,7 +378450,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -378520,7 +378520,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Capacity": "System.Int32", "Name": "System.String", @@ -378566,7 +378566,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VpnClientAddressPool": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "VpnClientIpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", @@ -378624,7 +378624,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -378636,7 +378636,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Thumbprint": "System.String", "ProvisioningState": "System.String", @@ -378684,7 +378684,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -378696,7 +378696,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicCertData": "System.String", "ProvisioningState": "System.String", @@ -378744,7 +378744,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -378756,7 +378756,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -378808,7 +378808,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -378820,7 +378820,7 @@ "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalAddressRanges": "System.String[]", "RemoteAddressRanges": "System.String[]" @@ -378865,7 +378865,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -378877,7 +378877,7 @@ "Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IngressBytesTransferred": "System.Nullable`1[System.Int64]", "EgressBytesTransferred": "System.Nullable`1[System.Int64]", @@ -378925,7 +378925,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -378937,7 +378937,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PeerIp": "System.String", "ProvisioningState": "System.String", @@ -378987,7 +378987,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHTTPHeader]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHTTPHeader]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSHTTPHeader, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSHTTPHeader, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -378999,7 +378999,7 @@ "Microsoft.Azure.Commands.Network.Models.PSHTTPHeader": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHTTPHeader", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHTTPHeader, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHTTPHeader, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Value": "System.String" @@ -379044,7 +379044,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -379056,7 +379056,7 @@ "Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -379106,7 +379106,7 @@ "Microsoft.Azure.Commands.Network.Models.PSBastion": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBastion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]", "Tag": "System.Collections.Hashtable", @@ -379181,7 +379181,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -379193,7 +379193,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformationProperties", "Id": "System.String", @@ -379239,7 +379239,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformationProperties": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformationProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformationProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformationProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressPrefixes": "System.Collections.Generic.List`1[System.String]", "Region": "System.String", @@ -379286,7 +379286,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -379298,7 +379298,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Providers": "System.Collections.Generic.IList`1[System.String]", "States": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState]", @@ -379345,7 +379345,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -379357,7 +379357,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Providers": "System.Collections.Generic.IList`1[System.String]", "Cities": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity]", @@ -379404,7 +379404,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -379416,7 +379416,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Providers": "System.Collections.Generic.IList`1[System.String]", "CityName": "System.String" @@ -379461,7 +379461,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLocation": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLocation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Country": "System.String", "State": "System.String", @@ -379507,7 +379507,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -379519,7 +379519,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Latencies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo]", "Provider": "System.String", @@ -379566,7 +379566,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -379578,7 +379578,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TimeStamp": "System.Nullable`1[System.DateTime]", "Score": "System.Nullable`1[System.Int32]" @@ -379623,7 +379623,7 @@ "Microsoft.Azure.Commands.Network.Models.PSUsageName": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSUsageName", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSUsageName, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSUsageName, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Value": "System.String", "LocalizedValue": "System.String" From 92113138dc26b295d84afa9dd5c82a81cc445592 Mon Sep 17 00:00:00 2001 From: xaliciayang Date: Wed, 4 Mar 2020 07:17:40 -0800 Subject: [PATCH 51/61] ps-vsprompt --- tools/PS-VSPrompt.lnk | Bin 2180 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 tools/PS-VSPrompt.lnk diff --git a/tools/PS-VSPrompt.lnk b/tools/PS-VSPrompt.lnk deleted file mode 100644 index 560dc664b6d7530ca5fa501ec0ef3cda146b796f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2180 zcmd^A-Aj{U6hE68nqrD(Dwb22Ddl|CIX_4+H+7O9vlsk`3FFxs5dP=>tFl^ypARBLxyT^@-FDH!C-k5`NX0&6s|`5DTF{>M3w#VKmZ zPEN9ti##O3CYnyKvuewhE(j#{N}V=GRwhx=7GBmd?@;Vcylqo<5~&w_on#{iWf8Vh z4At<6&{vFNgNiH;tH#!2+v2a-z#8U#@?(>?l`|!`ii^`^0iTsL;Ozm}Um_C_4{&@u zW&zx)fP+8)aDH#vNI1(xgI#JPBy>GrW?zJ6pF@;L>C}b`Oaik=r*MuN`4JIK6Lp~1 ztb3uNWLUAz1Dg)S+lsLrza%OpHFkGEcLseEye>he+o6{z1-|E!j#6P`rV7X{vZVy; z7VxW(DLd@Cu&*5}KDi4~+o4zCcC_$7z)n5Z4*XoW!5pm1$UwyytvIC{aH98RDhf$Z z5RIuVE{Ei{S=7kIZf$Dhn=>cj?rfOv=3MO7{{Y9$^&pVH35*{Bt{ov*dn%vCeOESA zdJUSHd)32U)-?k7gvRPHa%**;%ghq2w(hkht*nfu+KZ|Shx(#F7!4yguEhLqeo_A| zV({6RF@7p+_J8_3ydc5guLoa-XcCu%NALC2S33D?K5|@YNh*Nc%4a12T=e`4tO{jC zPx<)#|1IgMyb0|pz{FoJ)s;Lf&(%Np6L~Fp*zvLpa=F4XG1qC4(okd4C>zL>XWVC^ z!eq;S;OM z#{SX8JBg6*V-t2L2=FiY2O!%I;N?I&sW`$#rkb-_TsuyO{Yh$PcptJIVi>olz>% From a3fb9363ca5d9cfe56dadfc0e3fccc1058370d0d Mon Sep 17 00:00:00 2001 From: xaliciayang Date: Wed, 4 Mar 2020 07:21:19 -0800 Subject: [PATCH 52/61] removed ps-vsprompt from PR --- tools/PS-VSPrompt.lnk | Bin 0 -> 2248 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 tools/PS-VSPrompt.lnk diff --git a/tools/PS-VSPrompt.lnk b/tools/PS-VSPrompt.lnk new file mode 100644 index 0000000000000000000000000000000000000000..f4b94cb5ae254423da1ec8decedcecf51114d90c GIT binary patch literal 2248 zcmd^A%S%*Y6hEUGnqrD(Dwd-#rj+AV$MHdeIirr`W9)*D7(tyGbJ7_HuR7YIO>Hcd zA`+1j2~Cg+C1e)8Y*D+yT0})rv?x-$kV-oxWJeS}1IOlx7?|kRpd%g-H zQbY%!C0dYMDqRi;CMCuXUm8>DzPwTR_cRT(}vULpq4V_iMITtTcA3d!_w)JsE9&9zWUT-7!uf`hR?4scJ$xQaUxz( zM>cYhg*wSa5`1Fl>^iHaeC3irV!zaFwP$A$6>s5X8}p9D?Zn$YVf_c*%8AT}z=Y`3Vbebz1Uij8bx-e*5IdD}QsvQ%E4B{TReqy}#v!0{3pfdqih z$9*=yQVkpi0)dPB)5juMC+cldJ0YR#`7-%VXz~R_N#IwLX5;GE!l67i{OyHsj=_cv~H? zOO%T9=aH7u;A5gn=*_aH1n*YxE0Jv*{Ccpi12f*a2br_MuEZPGAOZm^b(q`nbmA+> z#k`#KRD#}uU3virT3@!Kkw^v6gv#7$mz-9!3i;ftqC&noa}wU272~~}i@o{{@VU9B z1o1zC{xiV!Clqs6)${lt0gY8|y?X9J&8VAgO#ptOiF))bZO#i>*@DH|>z$IvGoEHE zt|=NBi1}pDkKMW!`={kq!}rMH7ZZkrneh4D?D@EbLcreuzD&_5t_V*)>S&;B`uAeg zq|};R2)%{(N(8uY`WI;>%8HH(@cVBscWJx`avfmeZ&&I|A6Mk*9{r8Fkuqw3-2=T` zrJ0y(y-4Y(G3k^8WXU6Lvru7j}zI-nU`UC930R;p8*Tx~}4g$D+Ag2|__?l*=d{Od% zFDe#3`^MSWdJ2EM6E&49ZZoPXS5yb|yeJ%yDSbCS&#eFldH1|IweaTK$oY4)Q2ilx zu^jrN?7%_tce7LKcfV Date: Wed, 4 Mar 2020 08:24:14 -0800 Subject: [PATCH 53/61] add comma --- src/Sql/Sql/Az.Sql.psd1 | 400 ++++++++++++++++++++-------------------- 1 file changed, 200 insertions(+), 200 deletions(-) diff --git a/src/Sql/Sql/Az.Sql.psd1 b/src/Sql/Sql/Az.Sql.psd1 index 9cb5b420ab5e..9636c9aebbae 100644 --- a/src/Sql/Sql/Az.Sql.psd1 +++ b/src/Sql/Sql/Az.Sql.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = 'Microsoft.Azure.Management.Sql.dll', +RequiredAssemblies = 'Microsoft.Azure.Management.Sql.dll', 'Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. @@ -75,215 +75,215 @@ NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Sql.dll') FunctionsToExport = @() # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. -CmdletsToExport = 'Get-AzSqlDatabaseTransparentDataEncryption', - 'Get-AzSqlDatabaseTransparentDataEncryptionActivity', - 'Set-AzSqlDatabaseTransparentDataEncryption', - 'Get-AzSqlDatabaseUpgradeHint', 'Get-AzSqlServerUpgradeHint', - 'Get-AzSqlServerServiceObjective', - 'Get-AzSqlServerActiveDirectoryAdministrator', - 'Remove-AzSqlServerActiveDirectoryAdministrator', - 'Set-AzSqlServerActiveDirectoryAdministrator', 'Get-AzSqlServer', - 'New-AzSqlServer', 'Remove-AzSqlServer', 'Set-AzSqlServer', - 'Get-AzSqlServerCommunicationLink', - 'New-AzSqlServerCommunicationLink', - 'Remove-AzSqlServerCommunicationLink', - 'Get-AzSqlDatabaseReplicationLink', 'New-AzSqlDatabaseCopy', - 'New-AzSqlDatabaseSecondary', 'Remove-AzSqlDatabaseSecondary', - 'Set-AzSqlDatabaseSecondary', 'Get-AzSqlElasticPoolRecommendation', - 'Get-AzSqlDatabaseIndexRecommendation', - 'Start-AzSqlDatabaseExecuteIndexRecommendation', - 'Stop-AzSqlDatabaseExecuteIndexRecommendation', - 'Get-AzSqlServerFirewallRule', 'New-AzSqlServerFirewallRule', - 'Remove-AzSqlServerFirewallRule', 'Set-AzSqlServerFirewallRule', - 'Get-AzSqlElasticPool', 'Get-AzSqlElasticPoolActivity', - 'Get-AzSqlElasticPoolDatabase', 'New-AzSqlElasticPool', - 'Remove-AzSqlElasticPool', 'Set-AzSqlElasticPool', - 'Get-AzSqlServerDisasterRecoveryConfiguration', - 'Get-AzSqlServerDisasterRecoveryConfigurationActivity', - 'New-AzSqlServerDisasterRecoveryConfiguration', - 'Remove-AzSqlServerDisasterRecoveryConfiguration', - 'Set-AzSqlServerDisasterRecoveryConfiguration', - 'Resume-AzSqlDatabase', 'Suspend-AzSqlDatabase', - 'Get-AzSqlDatabaseDataMaskingPolicy', - 'Get-AzSqlDatabaseDataMaskingRule', - 'New-AzSqlDatabaseDataMaskingRule', - 'Remove-AzSqlDatabaseDataMaskingRule', - 'Set-AzSqlDatabaseDataMaskingPolicy', - 'Set-AzSqlDatabaseDataMaskingRule', 'Get-AzSqlCapability', - 'Get-AzSqlDatabase', 'Get-AzSqlDatabaseActivity', - 'Get-AzSqlDatabaseExpanded', 'New-AzSqlDatabase', - 'Remove-AzSqlDatabase', 'Set-AzSqlDatabase', - 'Get-AzSqlDatabaseImportExportStatus', 'New-AzSqlDatabaseExport', - 'New-AzSqlDatabaseImport', 'Get-AzSqlDatabaseGeoBackupPolicy', - 'Set-AzSqlDatabaseGeoBackupPolicy', - 'Get-AzSqlDatabaseBackupShortTermRetentionPolicy', - 'Set-AzSqlDatabaseBackupShortTermRetentionPolicy', - 'Get-AzSqlDatabaseBackupLongTermRetentionPolicy', - 'Set-AzSqlDatabaseBackupLongTermRetentionPolicy', - 'Get-AzSqlDatabaseLongTermRetentionBackup', - 'Remove-AzSqlDatabaseLongTermRetentionBackup', - 'Get-AzSqlDeletedDatabaseBackup', 'Get-AzSqlDatabaseGeoBackup', - 'Restore-AzSqlDatabase', 'Get-AzSqlDatabaseRestorePoint', - 'Get-AzSqlDatabaseRecommendedAction', - 'Get-AzSqlElasticPoolRecommendedAction', - 'Get-AzSqlServerRecommendedAction', - 'Set-AzSqlDatabaseRecommendedActionState', - 'Set-AzSqlElasticPoolRecommendedActionState', - 'Set-AzSqlServerRecommendedActionState', - 'Get-AzSqlElasticPoolAdvisor', 'Get-AzSqlServerAdvisor', - 'Set-AzSqlElasticPoolAdvisorAutoExecuteStatus', - 'Set-AzSqlServerAdvisorAutoExecuteStatus', - 'Get-AzSqlDatabaseAdvisor', - 'Set-AzSqlDatabaseAdvisorAutoExecuteStatus', - 'Get-AzSqlServerTransparentDataEncryptionProtector', - 'Set-AzSqlServerTransparentDataEncryptionProtector', - 'Add-AzSqlServerKeyVaultKey', 'Get-AzSqlServerKeyVaultKey', - 'Remove-AzSqlServerKeyVaultKey', 'Get-AzSqlDatabaseFailoverGroup', - 'New-AzSqlDatabaseFailoverGroup', - 'Add-AzSqlDatabaseToFailoverGroup', - 'Remove-AzSqlDatabaseFromFailoverGroup', - 'Remove-AzSqlDatabaseFailoverGroup', - 'Set-AzSqlDatabaseFailoverGroup', - 'Switch-AzSqlDatabaseFailoverGroup', 'New-AzSqlSyncGroup', - 'Update-AzSqlSyncGroup', 'Get-AzSqlSyncGroup', - 'Get-AzSqlSyncGroupLog', 'Remove-AzSqlSyncGroup', - 'Update-AzSqlSyncSchema', 'Get-AzSqlSyncSchema', - 'Start-AzSqlSyncGroupSync', 'Stop-AzSqlSyncGroupSync', - 'New-AzSqlSyncMember', 'Update-AzSqlSyncMember', - 'Get-AzSqlSyncMember', 'Remove-AzSqlSyncMember', 'New-AzSqlSyncAgent', - 'Get-AzSqlSyncAgent', 'Remove-AzSqlSyncAgent', - 'New-AzSqlSyncAgentKey', 'Get-AzSqlSyncAgentLinkedDatabase', - 'New-AzSqlServerVirtualNetworkRule', - 'Set-AzSqlServerVirtualNetworkRule', - 'Get-AzSqlServerVirtualNetworkRule', - 'Remove-AzSqlServerVirtualNetworkRule', - 'Stop-AzSqlDatabaseActivity', 'Get-AzSqlServerDnsAlias', - 'Remove-AzSqlServerDnsAlias', 'New-AzSqlServerDnsAlias', - 'Set-AzSqlServerDnsAlias', 'New-AzSqlDatabaseRestorePoint', - 'Remove-AzSqlDatabaseRestorePoint', 'Stop-AzSqlElasticPoolActivity', - 'Add-AzSqlServerTransparentDataEncryptionCertificate', - 'Add-AzSqlManagedInstanceTransparentDataEncryptionCertificate', - 'Update-AzSqlDatabaseVulnerabilityAssessmentSetting', - 'Get-AzSqlDatabaseVulnerabilityAssessmentSetting', - 'Clear-AzSqlDatabaseVulnerabilityAssessmentSetting', - 'Set-AzSqlDatabaseVulnerabilityAssessmentRuleBaseline', - 'Get-AzSqlDatabaseVulnerabilityAssessmentRuleBaseline', - 'Clear-AzSqlDatabaseVulnerabilityAssessmentRuleBaseline', - 'Convert-AzSqlDatabaseVulnerabilityAssessmentScan', - 'Get-AzSqlDatabaseVulnerabilityAssessmentScanRecord', - 'Start-AzSqlDatabaseVulnerabilityAssessmentScan', - 'Get-AzSqlInstance', 'New-AzSqlInstance', 'Remove-AzSqlInstance', - 'Set-AzSqlInstance', 'Get-AzSqlInstanceDatabase', - 'New-AzSqlInstanceDatabase', 'Remove-AzSqlInstanceDatabase', - 'Restore-AzSqlInstanceDatabase', - 'Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting', - 'Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting', - 'Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting', - 'Set-AzSqlInstanceDatabaseVulnerabilityAssessmentRuleBaseline', - 'Get-AzSqlInstanceDatabaseVulnerabilityAssessmentRuleBaseline', - 'Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentRuleBaseline', - 'Convert-AzSqlInstanceDatabaseVulnerabilityAssessmentScan', - 'Get-AzSqlInstanceDatabaseVulnerabilityAssessmentScanRecord', - 'Start-AzSqlInstanceDatabaseVulnerabilityAssessmentScan', - 'Enable-AzSqlInstanceAdvancedDataSecurity', - 'Disable-AzSqlInstanceAdvancedDataSecurity', - 'Get-AzSqlInstanceAdvancedDataSecurityPolicy', - 'Get-AzSqlInstanceDatabaseGeoBackup', - 'Get-AzSqlInstanceDatabaseBackupShortTermRetentionPolicy', - 'Set-AzSqlInstanceDatabaseBackupShortTermRetentionPolicy', - 'Get-AzSqlDeletedInstanceDatabaseBackup', - 'Update-AzSqlInstanceVulnerabilityAssessmentSetting', - 'Get-AzSqlInstanceVulnerabilityAssessmentSetting', - 'Clear-AzSqlInstanceVulnerabilityAssessmentSetting', - 'Update-AzSqlServerVulnerabilityAssessmentSetting', - 'Get-AzSqlServerVulnerabilityAssessmentSetting', - 'Clear-AzSqlServerVulnerabilityAssessmentSetting', - 'Get-AzSqlDatabaseSensitivityClassification', - 'Get-AzSqlInstanceDatabaseSensitivityClassification', - 'Set-AzSqlDatabaseSensitivityClassification', - 'Set-AzSqlInstanceDatabaseSensitivityClassification', - 'Remove-AzSqlDatabaseSensitivityClassification', - 'Remove-AzSqlInstanceDatabaseSensitivityClassification', - 'Get-AzSqlDatabaseSensitivityRecommendation', - 'Get-AzSqlInstanceDatabaseSensitivityRecommendation', - 'Get-AzSqlVirtualCluster', 'Remove-AzSqlVirtualCluster', - 'Enable-AzSqlServerAdvancedDataSecurity', - 'Disable-AzSqlServerAdvancedDataSecurity', - 'Get-AzSqlServerAdvancedDataSecurityPolicy', - 'Get-AzSqlDatabaseInstanceFailoverGroup', - 'New-AzSqlDatabaseInstanceFailoverGroup', - 'Remove-AzSqlDatabaseInstanceFailoverGroup', - 'Set-AzSqlDatabaseInstanceFailoverGroup', - 'Switch-AzSqlDatabaseInstanceFailoverGroup', - 'Get-AzSqlServerAdvancedThreatProtectionSetting', - 'Clear-AzSqlServerAdvancedThreatProtectionSetting', - 'Update-AzSqlServerAdvancedThreatProtectionSetting', - 'Get-AzSqlDatabaseAdvancedThreatProtectionSetting', - 'Update-AzSqlDatabaseAdvancedThreatProtectionSetting', - 'Clear-AzSqlDatabaseAdvancedThreatProtectionSetting', - 'Add-AzSqlInstanceKeyVaultKey', 'Get-AzSqlInstanceKeyVaultKey', - 'Remove-AzSqlInstanceKeyVaultKey', - 'Get-AzSqlInstanceTransparentDataEncryptionProtector', - 'Set-AzSqlInstanceTransparentDataEncryptionProtector', - 'Get-AzSqlServerAudit', 'Get-AzSqlDatabaseAudit', - 'Set-AzSqlServerAudit', 'Set-AzSqlDatabaseAudit', - 'Get-AzSqlInstanceActiveDirectoryAdministrator', - 'Remove-AzSqlInstanceActiveDirectoryAdministrator', - 'Set-AzSqlInstanceActiveDirectoryAdministrator', - 'Remove-AzSqlServerAudit', 'Remove-AzSqlDatabaseAudit', - 'Get-AzSqlInstancePool', 'Set-AzSqlInstancePool', - 'New-AzSqlInstancePool', 'Remove-AzSqlInstancePool', - 'Get-AzSqlInstancePoolUsage', 'Invoke-AzSqlDatabaseFailover', - 'Invoke-AzSqlElasticPoolFailover', 'New-AzSqlElasticJobAgent', - 'Remove-AzSqlElasticJobAgent', 'Get-AzSqlElasticJobAgent', - 'Set-AzSqlElasticJobAgent', 'New-AzSqlElasticJobCredential', - 'Get-AzSqlElasticJobCredential', 'Set-AzSqlElasticJobCredential', - 'Remove-AzSqlElasticJobCredential', - 'New-AzSqlElasticJobTargetGroup', 'Get-AzSqlElasticJobTargetGroup', - 'Remove-AzSqlElasticJobTargetGroup', 'Add-AzSqlElasticJobTarget', - 'Remove-AzSqlElasticJobTarget', 'New-AzSqlElasticJob', - 'Get-AzSqlElasticJob', 'Set-AzSqlElasticJob', - 'Remove-AzSqlElasticJob', 'Add-AzSqlElasticJobStep', - 'Get-AzSqlElasticJobStep', 'Remove-AzSqlElasticJobStep', - 'Set-AzSqlElasticJobStep', 'Start-AzSqlElasticJob', - 'Stop-AzSqlElasticJob', 'Get-AzSqlElasticJobExecution', - 'Get-AzSqlElasticJobStepExecution', - 'Get-AzSqlElasticJobTargetExecution', - 'Enable-AzSqlDatabaseSensitivityRecommendation', - 'Disable-AzSqlDatabaseSensitivityRecommendation', - 'Enable-AzSqlInstanceDatabaseSensitivityRecommendation', +CmdletsToExport = 'Get-AzSqlDatabaseTransparentDataEncryption', + 'Get-AzSqlDatabaseTransparentDataEncryptionActivity', + 'Set-AzSqlDatabaseTransparentDataEncryption', + 'Get-AzSqlDatabaseUpgradeHint', 'Get-AzSqlServerUpgradeHint', + 'Get-AzSqlServerServiceObjective', + 'Get-AzSqlServerActiveDirectoryAdministrator', + 'Remove-AzSqlServerActiveDirectoryAdministrator', + 'Set-AzSqlServerActiveDirectoryAdministrator', 'Get-AzSqlServer', + 'New-AzSqlServer', 'Remove-AzSqlServer', 'Set-AzSqlServer', + 'Get-AzSqlServerCommunicationLink', + 'New-AzSqlServerCommunicationLink', + 'Remove-AzSqlServerCommunicationLink', + 'Get-AzSqlDatabaseReplicationLink', 'New-AzSqlDatabaseCopy', + 'New-AzSqlDatabaseSecondary', 'Remove-AzSqlDatabaseSecondary', + 'Set-AzSqlDatabaseSecondary', 'Get-AzSqlElasticPoolRecommendation', + 'Get-AzSqlDatabaseIndexRecommendation', + 'Start-AzSqlDatabaseExecuteIndexRecommendation', + 'Stop-AzSqlDatabaseExecuteIndexRecommendation', + 'Get-AzSqlServerFirewallRule', 'New-AzSqlServerFirewallRule', + 'Remove-AzSqlServerFirewallRule', 'Set-AzSqlServerFirewallRule', + 'Get-AzSqlElasticPool', 'Get-AzSqlElasticPoolActivity', + 'Get-AzSqlElasticPoolDatabase', 'New-AzSqlElasticPool', + 'Remove-AzSqlElasticPool', 'Set-AzSqlElasticPool', + 'Get-AzSqlServerDisasterRecoveryConfiguration', + 'Get-AzSqlServerDisasterRecoveryConfigurationActivity', + 'New-AzSqlServerDisasterRecoveryConfiguration', + 'Remove-AzSqlServerDisasterRecoveryConfiguration', + 'Set-AzSqlServerDisasterRecoveryConfiguration', + 'Resume-AzSqlDatabase', 'Suspend-AzSqlDatabase', + 'Get-AzSqlDatabaseDataMaskingPolicy', + 'Get-AzSqlDatabaseDataMaskingRule', + 'New-AzSqlDatabaseDataMaskingRule', + 'Remove-AzSqlDatabaseDataMaskingRule', + 'Set-AzSqlDatabaseDataMaskingPolicy', + 'Set-AzSqlDatabaseDataMaskingRule', 'Get-AzSqlCapability', + 'Get-AzSqlDatabase', 'Get-AzSqlDatabaseActivity', + 'Get-AzSqlDatabaseExpanded', 'New-AzSqlDatabase', + 'Remove-AzSqlDatabase', 'Set-AzSqlDatabase', + 'Get-AzSqlDatabaseImportExportStatus', 'New-AzSqlDatabaseExport', + 'New-AzSqlDatabaseImport', 'Get-AzSqlDatabaseGeoBackupPolicy', + 'Set-AzSqlDatabaseGeoBackupPolicy', + 'Get-AzSqlDatabaseBackupShortTermRetentionPolicy', + 'Set-AzSqlDatabaseBackupShortTermRetentionPolicy', + 'Get-AzSqlDatabaseBackupLongTermRetentionPolicy', + 'Set-AzSqlDatabaseBackupLongTermRetentionPolicy', + 'Get-AzSqlDatabaseLongTermRetentionBackup', + 'Remove-AzSqlDatabaseLongTermRetentionBackup', + 'Get-AzSqlDeletedDatabaseBackup', 'Get-AzSqlDatabaseGeoBackup', + 'Restore-AzSqlDatabase', 'Get-AzSqlDatabaseRestorePoint', + 'Get-AzSqlDatabaseRecommendedAction', + 'Get-AzSqlElasticPoolRecommendedAction', + 'Get-AzSqlServerRecommendedAction', + 'Set-AzSqlDatabaseRecommendedActionState', + 'Set-AzSqlElasticPoolRecommendedActionState', + 'Set-AzSqlServerRecommendedActionState', + 'Get-AzSqlElasticPoolAdvisor', 'Get-AzSqlServerAdvisor', + 'Set-AzSqlElasticPoolAdvisorAutoExecuteStatus', + 'Set-AzSqlServerAdvisorAutoExecuteStatus', + 'Get-AzSqlDatabaseAdvisor', + 'Set-AzSqlDatabaseAdvisorAutoExecuteStatus', + 'Get-AzSqlServerTransparentDataEncryptionProtector', + 'Set-AzSqlServerTransparentDataEncryptionProtector', + 'Add-AzSqlServerKeyVaultKey', 'Get-AzSqlServerKeyVaultKey', + 'Remove-AzSqlServerKeyVaultKey', 'Get-AzSqlDatabaseFailoverGroup', + 'New-AzSqlDatabaseFailoverGroup', + 'Add-AzSqlDatabaseToFailoverGroup', + 'Remove-AzSqlDatabaseFromFailoverGroup', + 'Remove-AzSqlDatabaseFailoverGroup', + 'Set-AzSqlDatabaseFailoverGroup', + 'Switch-AzSqlDatabaseFailoverGroup', 'New-AzSqlSyncGroup', + 'Update-AzSqlSyncGroup', 'Get-AzSqlSyncGroup', + 'Get-AzSqlSyncGroupLog', 'Remove-AzSqlSyncGroup', + 'Update-AzSqlSyncSchema', 'Get-AzSqlSyncSchema', + 'Start-AzSqlSyncGroupSync', 'Stop-AzSqlSyncGroupSync', + 'New-AzSqlSyncMember', 'Update-AzSqlSyncMember', + 'Get-AzSqlSyncMember', 'Remove-AzSqlSyncMember', 'New-AzSqlSyncAgent', + 'Get-AzSqlSyncAgent', 'Remove-AzSqlSyncAgent', + 'New-AzSqlSyncAgentKey', 'Get-AzSqlSyncAgentLinkedDatabase', + 'New-AzSqlServerVirtualNetworkRule', + 'Set-AzSqlServerVirtualNetworkRule', + 'Get-AzSqlServerVirtualNetworkRule', + 'Remove-AzSqlServerVirtualNetworkRule', + 'Stop-AzSqlDatabaseActivity', 'Get-AzSqlServerDnsAlias', + 'Remove-AzSqlServerDnsAlias', 'New-AzSqlServerDnsAlias', + 'Set-AzSqlServerDnsAlias', 'New-AzSqlDatabaseRestorePoint', + 'Remove-AzSqlDatabaseRestorePoint', 'Stop-AzSqlElasticPoolActivity', + 'Add-AzSqlServerTransparentDataEncryptionCertificate', + 'Add-AzSqlManagedInstanceTransparentDataEncryptionCertificate', + 'Update-AzSqlDatabaseVulnerabilityAssessmentSetting', + 'Get-AzSqlDatabaseVulnerabilityAssessmentSetting', + 'Clear-AzSqlDatabaseVulnerabilityAssessmentSetting', + 'Set-AzSqlDatabaseVulnerabilityAssessmentRuleBaseline', + 'Get-AzSqlDatabaseVulnerabilityAssessmentRuleBaseline', + 'Clear-AzSqlDatabaseVulnerabilityAssessmentRuleBaseline', + 'Convert-AzSqlDatabaseVulnerabilityAssessmentScan', + 'Get-AzSqlDatabaseVulnerabilityAssessmentScanRecord', + 'Start-AzSqlDatabaseVulnerabilityAssessmentScan', + 'Get-AzSqlInstance', 'New-AzSqlInstance', 'Remove-AzSqlInstance', + 'Set-AzSqlInstance', 'Get-AzSqlInstanceDatabase', + 'New-AzSqlInstanceDatabase', 'Remove-AzSqlInstanceDatabase', + 'Restore-AzSqlInstanceDatabase', + 'Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting', + 'Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting', + 'Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting', + 'Set-AzSqlInstanceDatabaseVulnerabilityAssessmentRuleBaseline', + 'Get-AzSqlInstanceDatabaseVulnerabilityAssessmentRuleBaseline', + 'Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentRuleBaseline', + 'Convert-AzSqlInstanceDatabaseVulnerabilityAssessmentScan', + 'Get-AzSqlInstanceDatabaseVulnerabilityAssessmentScanRecord', + 'Start-AzSqlInstanceDatabaseVulnerabilityAssessmentScan', + 'Enable-AzSqlInstanceAdvancedDataSecurity', + 'Disable-AzSqlInstanceAdvancedDataSecurity', + 'Get-AzSqlInstanceAdvancedDataSecurityPolicy', + 'Get-AzSqlInstanceDatabaseGeoBackup', + 'Get-AzSqlInstanceDatabaseBackupShortTermRetentionPolicy', + 'Set-AzSqlInstanceDatabaseBackupShortTermRetentionPolicy', + 'Get-AzSqlDeletedInstanceDatabaseBackup', + 'Update-AzSqlInstanceVulnerabilityAssessmentSetting', + 'Get-AzSqlInstanceVulnerabilityAssessmentSetting', + 'Clear-AzSqlInstanceVulnerabilityAssessmentSetting', + 'Update-AzSqlServerVulnerabilityAssessmentSetting', + 'Get-AzSqlServerVulnerabilityAssessmentSetting', + 'Clear-AzSqlServerVulnerabilityAssessmentSetting', + 'Get-AzSqlDatabaseSensitivityClassification', + 'Get-AzSqlInstanceDatabaseSensitivityClassification', + 'Set-AzSqlDatabaseSensitivityClassification', + 'Set-AzSqlInstanceDatabaseSensitivityClassification', + 'Remove-AzSqlDatabaseSensitivityClassification', + 'Remove-AzSqlInstanceDatabaseSensitivityClassification', + 'Get-AzSqlDatabaseSensitivityRecommendation', + 'Get-AzSqlInstanceDatabaseSensitivityRecommendation', + 'Get-AzSqlVirtualCluster', 'Remove-AzSqlVirtualCluster', + 'Enable-AzSqlServerAdvancedDataSecurity', + 'Disable-AzSqlServerAdvancedDataSecurity', + 'Get-AzSqlServerAdvancedDataSecurityPolicy', + 'Get-AzSqlDatabaseInstanceFailoverGroup', + 'New-AzSqlDatabaseInstanceFailoverGroup', + 'Remove-AzSqlDatabaseInstanceFailoverGroup', + 'Set-AzSqlDatabaseInstanceFailoverGroup', + 'Switch-AzSqlDatabaseInstanceFailoverGroup', + 'Get-AzSqlServerAdvancedThreatProtectionSetting', + 'Clear-AzSqlServerAdvancedThreatProtectionSetting', + 'Update-AzSqlServerAdvancedThreatProtectionSetting', + 'Get-AzSqlDatabaseAdvancedThreatProtectionSetting', + 'Update-AzSqlDatabaseAdvancedThreatProtectionSetting', + 'Clear-AzSqlDatabaseAdvancedThreatProtectionSetting', + 'Add-AzSqlInstanceKeyVaultKey', 'Get-AzSqlInstanceKeyVaultKey', + 'Remove-AzSqlInstanceKeyVaultKey', + 'Get-AzSqlInstanceTransparentDataEncryptionProtector', + 'Set-AzSqlInstanceTransparentDataEncryptionProtector', + 'Get-AzSqlServerAudit', 'Get-AzSqlDatabaseAudit', + 'Set-AzSqlServerAudit', 'Set-AzSqlDatabaseAudit', + 'Get-AzSqlInstanceActiveDirectoryAdministrator', + 'Remove-AzSqlInstanceActiveDirectoryAdministrator', + 'Set-AzSqlInstanceActiveDirectoryAdministrator', + 'Remove-AzSqlServerAudit', 'Remove-AzSqlDatabaseAudit', + 'Get-AzSqlInstancePool', 'Set-AzSqlInstancePool', + 'New-AzSqlInstancePool', 'Remove-AzSqlInstancePool', + 'Get-AzSqlInstancePoolUsage', 'Invoke-AzSqlDatabaseFailover', + 'Invoke-AzSqlElasticPoolFailover', 'New-AzSqlElasticJobAgent', + 'Remove-AzSqlElasticJobAgent', 'Get-AzSqlElasticJobAgent', + 'Set-AzSqlElasticJobAgent', 'New-AzSqlElasticJobCredential', + 'Get-AzSqlElasticJobCredential', 'Set-AzSqlElasticJobCredential', + 'Remove-AzSqlElasticJobCredential', + 'New-AzSqlElasticJobTargetGroup', 'Get-AzSqlElasticJobTargetGroup', + 'Remove-AzSqlElasticJobTargetGroup', 'Add-AzSqlElasticJobTarget', + 'Remove-AzSqlElasticJobTarget', 'New-AzSqlElasticJob', + 'Get-AzSqlElasticJob', 'Set-AzSqlElasticJob', + 'Remove-AzSqlElasticJob', 'Add-AzSqlElasticJobStep', + 'Get-AzSqlElasticJobStep', 'Remove-AzSqlElasticJobStep', + 'Set-AzSqlElasticJobStep', 'Start-AzSqlElasticJob', + 'Stop-AzSqlElasticJob', 'Get-AzSqlElasticJobExecution', + 'Get-AzSqlElasticJobStepExecution', + 'Get-AzSqlElasticJobTargetExecution', + 'Enable-AzSqlDatabaseSensitivityRecommendation', + 'Disable-AzSqlDatabaseSensitivityRecommendation', + 'Enable-AzSqlInstanceDatabaseSensitivityRecommendation', 'Disable-AzSqlInstanceDatabaseSensitivityRecommendation', 'Get-AzSqlInstanceDatabaseLongTermRetentionBackup', 'Remove-AzSqlInstanceDatabaseLongTermRetentionBackup', 'Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy', - 'Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy' + 'Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy', 'Disable-AzSqlServerActiveDirectoryOnlyAuthentication' # Variables to export from this module # VariablesToExport = @() # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. -AliasesToExport = 'Get-AzSqlDatabaseServerAuditingPolicy', - 'Remove-AzSqlDatabaseServerAuditing', - 'Set-AzSqlDatabaseServerAuditingPolicy', - 'Use-AzSqlDatabaseServerAuditingPolicy', - 'Get-AzSqlDatabaseLongTermRetentionPolicy', - 'Set-AzSqlDatabaseLongTermRetentionPolicy', - 'Update-AzSqlDatabaseVulnerabilityAssessmentSetting', - 'Get-AzSqlDatabaseVulnerabilityAssessmentSetting', - 'Clear-AzSqlDatabaseVulnerabilityAssessmentSetting', - 'Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting', - 'Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting', - 'Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting', - 'Enable-AzSqlServerAdvancedThreatProtection', - 'Disable-AzSqlServerAdvancedThreatProtection', - 'Get-AzSqlServerAdvancedThreatProtectionSetting', - 'Get-AzSqlServerThreatDetectionSetting', - 'Remove-AzSqlServerThreatDetectionSetting', - 'Set-AzSqlServerThreatDetectionSetting', - 'Get-AzSqlDatabaseThreatDetectionSetting', - 'Set-AzSqlDatabaseThreatDetectionSetting', - 'Remove-AzSqlDatabaseThreatDetectionSetting', +AliasesToExport = 'Get-AzSqlDatabaseServerAuditingPolicy', + 'Remove-AzSqlDatabaseServerAuditing', + 'Set-AzSqlDatabaseServerAuditingPolicy', + 'Use-AzSqlDatabaseServerAuditingPolicy', + 'Get-AzSqlDatabaseLongTermRetentionPolicy', + 'Set-AzSqlDatabaseLongTermRetentionPolicy', + 'Update-AzSqlDatabaseVulnerabilityAssessmentSetting', + 'Get-AzSqlDatabaseVulnerabilityAssessmentSetting', + 'Clear-AzSqlDatabaseVulnerabilityAssessmentSetting', + 'Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting', + 'Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting', + 'Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting', + 'Enable-AzSqlServerAdvancedThreatProtection', + 'Disable-AzSqlServerAdvancedThreatProtection', + 'Get-AzSqlServerAdvancedThreatProtectionSetting', + 'Get-AzSqlServerThreatDetectionSetting', + 'Remove-AzSqlServerThreatDetectionSetting', + 'Set-AzSqlServerThreatDetectionSetting', + 'Get-AzSqlDatabaseThreatDetectionSetting', + 'Set-AzSqlDatabaseThreatDetectionSetting', + 'Remove-AzSqlDatabaseThreatDetectionSetting', 'Set-AzSqlInstanceTDEProtector', 'Get-AzSqlInstanceTDEProtector' # DSC resources to export from this module From 2ff5861c31f4534a695ff3aeb5038537ef12ec0c Mon Sep 17 00:00:00 2001 From: xaliciayang Date: Wed, 4 Mar 2020 09:03:50 -0800 Subject: [PATCH 54/61] change dogfood endpoint in session records --- .../TestManagedInstanceLongTermRetentionBackup.json | 12 ++++++------ .../TestManagedInstanceLongTermRetentionPolicy.json | 8 ++++---- ...nceLongTermRetentionResourceGroupBasedBackup.json | 8 ++++---- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionBackup.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionBackup.json index 421f5182c2ae..abcee749e4fe 100644 --- a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionBackup.json +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionBackup.json @@ -663,13 +663,13 @@ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/982658a2-8603-499e-a006-9bf9b7af3038?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/982658a2-8603-499e-a006-9bf9b7af3038?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/982658a2-8603-499e-a006-9bf9b7af3038?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/982658a2-8603-499e-a006-9bf9b7af3038?api-version=2019-06-01-preview" ], "x-ms-request-id": [ "982658a2-8603-499e-a006-9bf9b7af3038" @@ -1521,13 +1521,13 @@ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackupOperationResults/792c539b-fcbf-4f56-80d6-bfe1fb487098?api-version=2018-06-01-preview" + "https://management.azure.com/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackupOperationResults/792c539b-fcbf-4f56-80d6-bfe1fb487098?api-version=2018-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackupAzureAsyncOperation/792c539b-fcbf-4f56-80d6-bfe1fb487098?api-version=2018-06-01-preview" + "https://management.azure.com/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackupAzureAsyncOperation/792c539b-fcbf-4f56-80d6-bfe1fb487098?api-version=2018-06-01-preview" ], "x-ms-request-id": [ "792c539b-fcbf-4f56-80d6-bfe1fb487098" @@ -1833,13 +1833,13 @@ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/b6702ba1-5d4e-4664-b163-cce3129ce5a8?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/b6702ba1-5d4e-4664-b163-cce3129ce5a8?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/b6702ba1-5d4e-4664-b163-cce3129ce5a8?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/b6702ba1-5d4e-4664-b163-cce3129ce5a8?api-version=2019-06-01-preview" ], "x-ms-request-id": [ "b6702ba1-5d4e-4664-b163-cce3129ce5a8" diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionPolicy.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionPolicy.json index cc78fcc4bf9d..43023dec5668 100644 --- a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionPolicy.json +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionPolicy.json @@ -213,13 +213,13 @@ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/46dc2f72-75f8-4df9-8a2f-1a90c053504c?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/46dc2f72-75f8-4df9-8a2f-1a90c053504c?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/46dc2f72-75f8-4df9-8a2f-1a90c053504c?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/46dc2f72-75f8-4df9-8a2f-1a90c053504c?api-version=2019-06-01-preview" ], "x-ms-request-id": [ "46dc2f72-75f8-4df9-8a2f-1a90c053504c" @@ -714,13 +714,13 @@ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyOperationResults/4c538ab4-6731-40f7-8e02-5c624cec4ca6?api-version=2018-06-01-preview" + "https://management.azure.com/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyOperationResults/4c538ab4-6731-40f7-8e02-5c624cec4ca6?api-version=2018-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyAzureAsyncOperation/4c538ab4-6731-40f7-8e02-5c624cec4ca6?api-version=2018-06-01-preview" + "https://management.azure.com/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyAzureAsyncOperation/4c538ab4-6731-40f7-8e02-5c624cec4ca6?api-version=2018-06-01-preview" ], "x-ms-request-id": [ "4c538ab4-6731-40f7-8e02-5c624cec4ca6" diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionResourceGroupBasedBackup.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionResourceGroupBasedBackup.json index 84a43d3182d7..9ec84f8475f7 100644 --- a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionResourceGroupBasedBackup.json +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionResourceGroupBasedBackup.json @@ -915,13 +915,13 @@ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/d8d33f75-5fe3-4c68-a33c-92eb7dca1177?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/d8d33f75-5fe3-4c68-a33c-92eb7dca1177?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/d8d33f75-5fe3-4c68-a33c-92eb7dca1177?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/d8d33f75-5fe3-4c68-a33c-92eb7dca1177?api-version=2019-06-01-preview" ], "x-ms-request-id": [ "d8d33f75-5fe3-4c68-a33c-92eb7dca1177" @@ -1527,13 +1527,13 @@ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/31a73580-c5f0-4dca-9b5f-bffa39738617?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/31a73580-c5f0-4dca-9b5f-bffa39738617?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/31a73580-c5f0-4dca-9b5f-bffa39738617?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/31a73580-c5f0-4dca-9b5f-bffa39738617?api-version=2019-06-01-preview" ], "x-ms-request-id": [ "31a73580-c5f0-4dca-9b5f-bffa39738617" From 12c572e4c0036a06d532a7f5c019a66829f4fd57 Mon Sep 17 00:00:00 2001 From: xaliciayang <59986952+xaliciayang@users.noreply.github.com> Date: Wed, 4 Mar 2020 09:09:02 -0800 Subject: [PATCH 55/61] add servers back into vulnerability --- src/Sql/Sql.Test/ScenarioTests/VulnerabilityAssessmentTests.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Sql/Sql.Test/ScenarioTests/VulnerabilityAssessmentTests.cs b/src/Sql/Sql.Test/ScenarioTests/VulnerabilityAssessmentTests.cs index eec7efd3865d..31e95c0abc5c 100644 --- a/src/Sql/Sql.Test/ScenarioTests/VulnerabilityAssessmentTests.cs +++ b/src/Sql/Sql.Test/ScenarioTests/VulnerabilityAssessmentTests.cs @@ -33,6 +33,7 @@ protected override void SetupManagementClients(RestTestFramework.MockContext con public VulnerabilityAssessmentTests(ITestOutputHelper output) : base(output) { base.resourceTypesToIgnoreApiVersion = new string[] { + "Microsoft.Sql/servers", "Microsoft.Sql/managedInstances", "Microsoft.Sql/managedInstances/databases" }; @@ -96,4 +97,4 @@ public void VulnerabilityAssessmentScanConvertTest() #endregion } -} \ No newline at end of file +} From eb3d205833dc0d85baff6eeceae90178b34b7d12 Mon Sep 17 00:00:00 2001 From: Bo Wen Date: Wed, 4 Mar 2020 10:58:39 -0800 Subject: [PATCH 56/61] BugFix for PrivateLinkServiceConnectionState --- src/Network/Network/ChangeLog.md | 6 ++++-- .../Network/Common/NetworkResourceManagerProfile.cs | 10 ++++++++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/src/Network/Network/ChangeLog.md b/src/Network/Network/ChangeLog.md index b54497d1e5fe..c6703bcfad15 100644 --- a/src/Network/Network/ChangeLog.md +++ b/src/Network/Network/ChangeLog.md @@ -19,6 +19,8 @@ ---> ## Upcoming Release +* Fix a naming-difference issue in PrivateLinkServiceConnectionState class. + - Mapping the field ActionsRequired to ActionRequired. ## Version 2.3.1 * Added one extra parameter note for parameter `-EnableProxyProtocol` for `New-AzPrivateLinkService` cmdlet. @@ -52,8 +54,8 @@ ## Version 2.1.0 * Change `Start-AzVirtualNetworkGatewayConnectionPacketCapture.md` and `Start-AzVirtualnetworkGatewayPacketCapture.md` FilterData option examples. * Add `PrivateRange` parameter to `AzureFirewall` - - Updated cmdlet: - - New-AzFirewall + - Updated cmdlet: + - New-AzFirewall ## Version 2.0.0 * Change all cmdlets for PrivateEndpointConnection to support generic service provider. diff --git a/src/Network/Network/Common/NetworkResourceManagerProfile.cs b/src/Network/Network/Common/NetworkResourceManagerProfile.cs index 21d9d5d75559..037fbe32985c 100644 --- a/src/Network/Network/Common/NetworkResourceManagerProfile.cs +++ b/src/Network/Network/Common/NetworkResourceManagerProfile.cs @@ -1268,8 +1268,14 @@ private static void Initialize() cfg.CreateMap(); cfg.CreateMap(); - cfg.CreateMap(); - cfg.CreateMap(); + cfg.CreateMap().AfterMap((src, dest) => + { + dest.ActionsRequired = src.ActionRequired; + }); + cfg.CreateMap().AfterMap((src, dest) => + { + dest.ActionRequired = src.ActionsRequired; + }); cfg.CreateMap(); cfg.CreateMap(); From 6110ca3257fa50403cb32867f8172ff03c149c50 Mon Sep 17 00:00:00 2001 From: xaliciayang Date: Wed, 4 Mar 2020 11:25:42 -0800 Subject: [PATCH 57/61] ltr policy record --- .../ManagedDatabaseBackupTests.ps1 | 20 +- ...anagedInstanceLongTermRetentionPolicy.json | 346 +++++++++--------- 2 files changed, 183 insertions(+), 183 deletions(-) diff --git a/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.ps1 b/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.ps1 index 507b73ca52fa..8df1885a97c2 100644 --- a/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.ps1 +++ b/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.ps1 @@ -182,18 +182,18 @@ function Test-ManagedDeletedDatabaseShortTermRetentionPolicy .SYNOPSIS Test long term retention for managed databases. #> -function Test-ManagedInstanceLongTermRetentionPolicy($location = "southeastasia") +function Test-ManagedInstanceLongTermRetentionPolicy() { # Setup - $resourceGroupName = "ps-test-rg" - $managedInstanceName = "ps-test-mi" + $resourceGroupName = "cl_stage_sea_cv" + $managedInstanceName = "seageodr-gen5-gp" $weeklyRetention = "P1W" $zeroRetention = "PT0S" try { # create test database - $databaseName = "ps-ltr-policy-test" + $databaseName = "ps-ltr-policy-test-1" $database = New-AzSqlInstanceDatabase -ResourceGroupName $resourceGroupName -InstanceName $managedInstanceName -Name $databaseName Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy -ResourceGroupName $resourceGroupName -InstanceName $managedInstanceName -DatabaseName $databaseName -WeeklyRetention $weeklyRetention @@ -221,9 +221,9 @@ function Test-ManagedInstanceLongTermRetentionBackup # Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy -ResourceGroup $resourceGroup -ServerName $serverName -DatabaseName $databaseName -WeeklyRetention P1W # Wait about 18 hours until it gets properly copied and you see the backup when run get backups, for example: # Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -InstanceName $managedInstanceName -DatabaeName $databaseName - $resourceGroup = "ps-test-rg" + $resourceGroup = "cl_stage_sea_cv" $locationName = "southeastasia" - $managedInstanceName = "ps-test-mi" + $managedInstanceName = "seageodr-gen5-gp" $databaseName = "target1" $databaseWithRemovableBackup = "test"; @@ -249,7 +249,7 @@ function Test-ManagedInstanceLongTermRetentionBackup # Restore Test $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName - $restoredDatabase = "ps-test-restore-x" + $restoredDatabase = "ps-test-restore-1" $db = Restore-AzSqlInstanceDatabase -FromLongTermRetentionBackup -ResourceId $backups[0].ResourceId -TargetResourceGroupName $resourceGroup -TargetInstanceName $managedInstanceName -TargetInstanceDatabaseName $restoredDatabase Assert-AreEqual $db.Name $restoredDatabase @@ -277,9 +277,9 @@ function Test-ManagedInstanceLongTermRetentionResourceGroupBasedBackup # Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy -ResourceGroup $resourceGroup -ServerName $serverName -DatabaseName $databaseName -WeeklyRetention P1W # Wait about 18 hours until it gets properly copied and you see the backup when run get backups, for example: # Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -ServerName $serverName -DatabaeName $databaseName -ResourceGroupName $resourceGroup - $resourceGroup = "ps-test-rg" + $resourceGroup = "cl_stage_sea_cv" $locationName = "southeastasia" - $managedInstanceName = "ps-test-mi" + $managedInstanceName = "seageodr-gen5-gp" $databaseName = "test" # Basic Get Tests @@ -308,7 +308,7 @@ function Test-ManagedInstanceLongTermRetentionResourceGroupBasedBackup Assert-AreNotEqual $backups.Count 0 # Restore Test - $restoredDatabase = "ps-test-restore-with-rg-x" + $restoredDatabase = "ps-test-restore-with-rg-1" $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -ResourceGroupName $resourceGroup $db = Restore-AzSqlInstanceDatabase -FromLongTermRetentionBackup -ResourceId $backups[0].ResourceId -TargetResourceGroupName $resourceGroup -TargetInstanceName $managedInstanceName -TargetInstanceDatabaseName $restoredDatabase Assert-AreEqual $db.Name $restoredDatabase diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionPolicy.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionPolicy.json index 43023dec5668..3b9c51f040f5 100644 --- a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionPolicy.json +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionPolicy.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-ltr-policy-test?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLWx0ci1wb2xpY3ktdGVzdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-ltr-policy-test-1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLWx0ci1wb2xpY3ktdGVzdC0xP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bfdf79e7-9a2a-4445-936a-8eeae64e9b57" + "e049b200-643a-4336-92f0-956311b1b7e0" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -30,13 +30,13 @@ "gateway" ], "x-ms-request-id": [ - "bc9ee591-ed5f-412c-b1d1-036e98d5e1ec" + "06f30a3b-f1dd-4c3e-af49-2ebb8b7097b7" ], "x-ms-correlation-request-id": [ - "bc9ee591-ed5f-412c-b1d1-036e98d5e1ec" + "06f30a3b-f1dd-4c3e-af49-2ebb8b7097b7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T012104Z:bc9ee591-ed5f-412c-b1d1-036e98d5e1ec" + "NORTHEUROPE:20200304T191639Z:06f30a3b-f1dd-4c3e-af49-2ebb8b7097b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:21:04 GMT" + "Wed, 04 Mar 2020 19:16:39 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,15 +54,15 @@ "-1" ], "Content-Length": [ - "195" + "197" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-ltr-policy-test' under resource group 'ps-test-rg' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-ltr-policy-test-1' under resource group 'cl_stage_sea_cv' was not found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-ltr-policy-test?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLWx0ci1wb2xpY3ktdGVzdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-ltr-policy-test-1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLWx0ci1wb2xpY3ktdGVzdC0xP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -70,7 +70,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -81,19 +81,19 @@ "no-cache" ], "x-ms-request-id": [ - "f3030d40-9dba-4f2e-9e42-b6a3eccddb45" + "732665ff-ada0-45ae-8a59-1d82148d5dbc" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14995" ], "x-ms-correlation-request-id": [ - "494e5126-a58d-40ac-bc2d-be950ab9a2ae" + "bede4fd9-87ff-4e9b-84ee-74f19086b690" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T012209Z:494e5126-a58d-40ac-bc2d-be950ab9a2ae" + "NORTHEUROPE:20200304T191715Z:bede4fd9-87ff-4e9b-84ee-74f19086b690" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -102,10 +102,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:22:09 GMT" + "Wed, 04 Mar 2020 19:17:14 GMT" ], "Content-Length": [ - "441" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -114,17 +114,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-04T01:21:07.76Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-ltr-policy-test\",\r\n \"name\": \"ps-ltr-policy-test\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-04T19:16:44.263Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-ltr-policy-test-1\",\r\n \"name\": \"ps-ltr-policy-test-1\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp?api-version=2018-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3A/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8b0b3998-9ea4-46db-998c-7b7175c830fb" + "d4850dc5-1966-4e57-a256-2418b68c9013" ], "Accept-Language": [ "en-US" @@ -133,7 +133,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -144,19 +144,19 @@ "no-cache" ], "x-ms-request-id": [ - "8086055a-969f-4e9c-9c17-c75410ac7f7a" + "69997fc0-b685-4845-b976-f4e13e409f99" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14998" ], "x-ms-correlation-request-id": [ - "901a8542-b7d0-4599-9134-d304f255cd92" + "30ea4aaf-6ce4-4d77-b12e-dee0a24cb598" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T012104Z:901a8542-b7d0-4599-9134-d304f255cd92" + "NORTHEUROPE:20200304T191640Z:30ea4aaf-6ce4-4d77-b12e-dee0a24cb598" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -165,7 +165,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:21:04 GMT" + "Wed, 04 Mar 2020 19:16:40 GMT" ], "Content-Length": [ "873" @@ -177,17 +177,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 8\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"ps-test-mi.lkgt1aeda54f909eb.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"cloudSA\",\r\n \"subnetId\": \"/subscriptions/741fd0f5-9cb8-442c-91c3-3ef4ca231c2a/resourceGroups/cloudlifter/providers/Microsoft.ClassicNetwork/virtualNetworks/cloudlifter-runners-stage-sea/subnets/Gen5GeoDR\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 8,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"lkgt1aeda54f909eb\",\r\n \"publicDataEndpointEnabled\": true,\r\n \"proxyOverride\": \"Proxy\",\r\n \"timezoneId\": \"UTC\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi\",\r\n \"name\": \"ps-test-mi\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 8\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"seageodr-gen5-gp.lkgt1aeda54f909eb.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"cloudSA\",\r\n \"subnetId\": \"/subscriptions/741fd0f5-9cb8-442c-91c3-3ef4ca231c2a/resourceGroups/cloudlifter/providers/Microsoft.ClassicNetwork/virtualNetworks/cloudlifter-runners-stage-sea/subnets/Gen5GeoDR\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 8,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"lkgt1aeda54f909eb\",\r\n \"publicDataEndpointEnabled\": true,\r\n \"proxyOverride\": \"Proxy\",\r\n \"timezoneId\": \"UTC\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp\",\r\n \"name\": \"seageodr-gen5-gp\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-ltr-policy-test?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLWx0ci1wb2xpY3ktdGVzdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-ltr-policy-test-1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLWx0ci1wb2xpY3ktdGVzdC0xP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9e4abdb8-bb90-45bb-b6ea-f4cf1e053e79" + "950ca21d-d61e-4585-910b-705763089359" ], "Accept-Language": [ "en-US" @@ -196,7 +196,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -213,16 +213,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/46dc2f72-75f8-4df9-8a2f-1a90c053504c?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/a5d58d95-42f3-495c-bb08-1c7cf947facd?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/46dc2f72-75f8-4df9-8a2f-1a90c053504c?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/a5d58d95-42f3-495c-bb08-1c7cf947facd?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "46dc2f72-75f8-4df9-8a2f-1a90c053504c" + "a5d58d95-42f3-495c-bb08-1c7cf947facd" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -231,10 +231,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "298bf34e-82eb-4680-9fa0-41d41928dd95" + "f6fe47ac-89bd-4f63-a71a-187bf68cf89e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T012107Z:298bf34e-82eb-4680-9fa0-41d41928dd95" + "NORTHEUROPE:20200304T191644Z:f6fe47ac-89bd-4f63-a71a-187bf68cf89e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -243,7 +243,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:21:07 GMT" + "Wed, 04 Mar 2020 19:16:43 GMT" ], "Content-Length": [ "76" @@ -255,12 +255,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateManagedDatabase\",\r\n \"startTime\": \"2020-03-04T01:21:07.337Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateManagedDatabase\",\r\n \"startTime\": \"2020-03-04T19:16:43.983Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/46dc2f72-75f8-4df9-8a2f-1a90c053504c?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNDZkYzJmNzItNzVmOC00ZGY5LThhMmYtMWE5MGMwNTM1MDRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/a5d58d95-42f3-495c-bb08-1c7cf947facd?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYTVkNThkOTUtNDJmMy00OTVjLWJiMDgtMWM3Y2Y5NDdmYWNkP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -268,7 +268,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -282,19 +282,19 @@ "15" ], "x-ms-request-id": [ - "2007456c-d023-4610-8810-046adc114fb9" + "23612cb5-4c2e-443a-a319-2700bb78ec39" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14997" ], "x-ms-correlation-request-id": [ - "8fcd728e-1ad9-488d-a4d9-2d5f94981f47" + "be99518c-f2fb-4ec0-870d-bbcfae5e05ce" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T012122Z:8fcd728e-1ad9-488d-a4d9-2d5f94981f47" + "NORTHEUROPE:20200304T191659Z:be99518c-f2fb-4ec0-870d-bbcfae5e05ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,7 +303,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:21:22 GMT" + "Wed, 04 Mar 2020 19:16:59 GMT" ], "Content-Length": [ "108" @@ -315,12 +315,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"46dc2f72-75f8-4df9-8a2f-1a90c053504c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T01:21:07.337Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a5d58d95-42f3-495c-bb08-1c7cf947facd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T19:16:43.983Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/46dc2f72-75f8-4df9-8a2f-1a90c053504c?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNDZkYzJmNzItNzVmOC00ZGY5LThhMmYtMWE5MGMwNTM1MDRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/a5d58d95-42f3-495c-bb08-1c7cf947facd?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYTVkNThkOTUtNDJmMy00OTVjLWJiMDgtMWM3Y2Y5NDdmYWNkP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -328,7 +328,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -342,19 +342,19 @@ "15" ], "x-ms-request-id": [ - "4653a057-ec7c-442a-bcb3-1cf7549a225e" + "b061a063-a496-450a-882e-1cdcd59aaf33" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14996" ], "x-ms-correlation-request-id": [ - "1ae65697-a69b-40b2-b1ec-47f144183080" + "3fbd05ce-b723-44bf-a52a-8044e1988446" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T012138Z:1ae65697-a69b-40b2-b1ec-47f144183080" + "NORTHEUROPE:20200304T191714Z:3fbd05ce-b723-44bf-a52a-8044e1988446" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -363,10 +363,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:21:37 GMT" + "Wed, 04 Mar 2020 19:17:14 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -375,20 +375,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"46dc2f72-75f8-4df9-8a2f-1a90c053504c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T01:21:07.337Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a5d58d95-42f3-495c-bb08-1c7cf947facd\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-04T19:16:43.983Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/46dc2f72-75f8-4df9-8a2f-1a90c053504c?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNDZkYzJmNzItNzVmOC00ZGY5LThhMmYtMWE5MGMwNTM1MDRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-ltr-policy-test-1/backupLongTermRetentionPolicies/default?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLWx0ci1wb2xpY3ktdGVzdC0xL2JhY2t1cExvbmdUZXJtUmV0ZW50aW9uUG9saWNpZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e0632be1-1a87-4d4c-9117-1ff69219825f" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -398,23 +404,20 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-request-id": [ - "f7c77d51-6f26-4c7d-b7e4-bd04ffd19cc2" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "eab10148-4dc8-4e23-afff-8af1efd465e0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], "x-ms-correlation-request-id": [ - "23458850-3319-40dc-ab4a-8b8a04134b84" + "1d815f61-4f5a-4081-a293-efbcde341fe5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T012153Z:23458850-3319-40dc-ab4a-8b8a04134b84" + "NORTHEUROPE:20200304T191715Z:1d815f61-4f5a-4081-a293-efbcde341fe5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -423,10 +426,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:21:53 GMT" + "Wed, 04 Mar 2020 19:17:14 GMT" ], "Content-Length": [ - "108" + "423" ], "Content-Type": [ "application/json; charset=utf-8" @@ -435,12 +438,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"46dc2f72-75f8-4df9-8a2f-1a90c053504c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T01:21:07.337Z\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"weeklyRetention\": \"PT0S\",\r\n \"monthlyRetention\": \"PT0S\",\r\n \"yearlyRetention\": \"PT0S\",\r\n \"weekOfYear\": 0\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-ltr-policy-test-1/backupLongTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicy\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/46dc2f72-75f8-4df9-8a2f-1a90c053504c?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNDZkYzJmNzItNzVmOC00ZGY5LThhMmYtMWE5MGMwNTM1MDRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-ltr-policy-test-1/backupLongTermRetentionPolicies/default?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLWx0ci1wb2xpY3ktdGVzdC0xL2JhY2t1cExvbmdUZXJtUmV0ZW50aW9uUG9saWNpZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -448,7 +451,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -458,23 +461,20 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-request-id": [ - "0c17e6a7-bc34-424d-8434-cda2c09bf42e" + "a4a548fc-15df-447c-8556-482a5c8c6bf9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14990" ], "x-ms-correlation-request-id": [ - "3e22b21f-ae4e-4039-9d8a-4b9528cd890a" + "98a560ac-333b-490f-b9e0-3a76f14447bf" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T012209Z:3e22b21f-ae4e-4039-9d8a-4b9528cd890a" + "NORTHEUROPE:20200304T191803Z:98a560ac-333b-490f-b9e0-3a76f14447bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -483,10 +483,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:22:09 GMT" + "Wed, 04 Mar 2020 19:18:02 GMT" ], "Content-Length": [ - "107" + "422" ], "Content-Type": [ "application/json; charset=utf-8" @@ -495,17 +495,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"46dc2f72-75f8-4df9-8a2f-1a90c053504c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-04T01:21:07.337Z\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"weeklyRetention\": \"P1W\",\r\n \"monthlyRetention\": \"PT0S\",\r\n \"yearlyRetention\": \"PT0S\",\r\n \"weekOfYear\": 0\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-ltr-policy-test-1/backupLongTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicy\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-ltr-policy-test/backupLongTermRetentionPolicies/default?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLWx0ci1wb2xpY3ktdGVzdC9iYWNrdXBMb25nVGVybVJldGVudGlvblBvbGljaWVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-ltr-policy-test-1/backupLongTermRetentionPolicies/default?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLWx0ci1wb2xpY3ktdGVzdC0xL2JhY2t1cExvbmdUZXJtUmV0ZW50aW9uUG9saWNpZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bb97bd5e-97ef-4e7e-b0b9-47f45c0c2b82" + "9f35cbb1-f67d-4a02-b63b-f4ae10f85dee" ], "Accept-Language": [ "en-US" @@ -514,7 +514,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -525,19 +525,19 @@ "no-cache" ], "x-ms-request-id": [ - "53bc176d-497f-4fd6-a210-02d73c244453" + "c25ac84e-2082-4448-a179-2eea6832a68b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14989" ], "x-ms-correlation-request-id": [ - "575294cc-5763-4447-9089-4c01e28075cb" + "2544eec2-5b74-4095-a5a6-8958732baab8" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T012210Z:575294cc-5763-4447-9089-4c01e28075cb" + "NORTHEUROPE:20200304T191803Z:2544eec2-5b74-4095-a5a6-8958732baab8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -546,10 +546,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:22:10 GMT" + "Wed, 04 Mar 2020 19:18:02 GMT" ], "Content-Length": [ - "421" + "422" ], "Content-Type": [ "application/json; charset=utf-8" @@ -558,20 +558,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"weeklyRetention\": \"PT0S\",\r\n \"monthlyRetention\": \"PT0S\",\r\n \"yearlyRetention\": \"PT0S\",\r\n \"weekOfYear\": 0\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-ltr-policy-test/backupLongTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicy\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"weeklyRetention\": \"P1W\",\r\n \"monthlyRetention\": \"PT0S\",\r\n \"yearlyRetention\": \"PT0S\",\r\n \"weekOfYear\": 0\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-ltr-policy-test-1/backupLongTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicy\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-ltr-policy-test/backupLongTermRetentionPolicies/default?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLWx0ci1wb2xpY3ktdGVzdC9iYWNrdXBMb25nVGVybVJldGVudGlvblBvbGljaWVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-ltr-policy-test-1/backupLongTermRetentionPolicies/default?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLWx0ci1wb2xpY3ktdGVzdC0xL2JhY2t1cExvbmdUZXJtUmV0ZW50aW9uUG9saWNpZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"weeklyRetention\": \"P1W\",\r\n \"weekOfYear\": 0\r\n }\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "259caad9-f291-48c2-ac69-da3cc711e201" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "80" ] }, "ResponseHeaders": { @@ -581,20 +593,29 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyOperationResults/fa30e18a-ab3b-499a-902a-c6f59e8f10e5?api-version=2018-06-01-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyAzureAsyncOperation/fa30e18a-ab3b-499a-902a-c6f59e8f10e5?api-version=2018-06-01-preview" + ], "x-ms-request-id": [ - "ba58c1c6-b66e-4f81-b0d7-2aea7da93532" + "fa30e18a-ab3b-499a-902a-c6f59e8f10e5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "65c3dc21-0080-4a9a-9d02-f9a4188965c3" + "67d26423-ebd2-4ce8-ab19-1e8f1ddaa305" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T012226Z:65c3dc21-0080-4a9a-9d02-f9a4188965c3" + "NORTHEUROPE:20200304T191716Z:67d26423-ebd2-4ce8-ab19-1e8f1ddaa305" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -603,10 +624,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:22:26 GMT" + "Wed, 04 Mar 2020 19:17:16 GMT" ], "Content-Length": [ - "420" + "91" ], "Content-Type": [ "application/json; charset=utf-8" @@ -615,26 +636,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"weeklyRetention\": \"P1W\",\r\n \"monthlyRetention\": \"PT0S\",\r\n \"yearlyRetention\": \"PT0S\",\r\n \"weekOfYear\": 0\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-ltr-policy-test/backupLongTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicy\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"operation\": \"UpsertDatabaseBackupArchivalPolicyV2\",\r\n \"startTime\": \"2020-03-04T19:17:16.073Z\"\r\n}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-ltr-policy-test/backupLongTermRetentionPolicies/default?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLWx0ci1wb2xpY3ktdGVzdC9iYWNrdXBMb25nVGVybVJldGVudGlvblBvbGljaWVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyAzureAsyncOperation/fa30e18a-ab3b-499a-902a-c6f59e8f10e5?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9tYW5hZ2VkSW5zdGFuY2VMb25nVGVybVJldGVudGlvblBvbGljeUF6dXJlQXN5bmNPcGVyYXRpb24vZmEzMGUxOGEtYWIzYi00OTlhLTkwMmEtYzZmNTllOGYxMGU1P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "be46a622-3480-4ebd-8470-3c46f52d7a27" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -644,20 +659,23 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "15" + ], "x-ms-request-id": [ - "2049e0d1-53be-4eeb-a90e-c079de0520fe" + "ce33f8e0-b260-48dc-9204-e9bf712eec4a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" - ], "x-ms-correlation-request-id": [ - "153f0c2d-d1e8-47b4-a7f6-fb7aceca1e9b" + "47373787-c3da-48a7-8491-5327770c86b5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T012227Z:153f0c2d-d1e8-47b4-a7f6-fb7aceca1e9b" + "NORTHEUROPE:20200304T191731Z:47373787-c3da-48a7-8491-5327770c86b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -666,10 +684,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:22:26 GMT" + "Wed, 04 Mar 2020 19:17:31 GMT" ], "Content-Length": [ - "420" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -678,32 +696,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"weeklyRetention\": \"P1W\",\r\n \"monthlyRetention\": \"PT0S\",\r\n \"yearlyRetention\": \"PT0S\",\r\n \"weekOfYear\": 0\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-ltr-policy-test/backupLongTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases/backupLongTermRetentionPolicy\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"fa30e18a-ab3b-499a-902a-c6f59e8f10e5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T19:17:16.073Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-ltr-policy-test/backupLongTermRetentionPolicies/default?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLWx0ci1wb2xpY3ktdGVzdC9iYWNrdXBMb25nVGVybVJldGVudGlvblBvbGljaWVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"weeklyRetention\": \"P1W\",\r\n \"weekOfYear\": 0\r\n }\r\n}", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyAzureAsyncOperation/fa30e18a-ab3b-499a-902a-c6f59e8f10e5?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9tYW5hZ2VkSW5zdGFuY2VMb25nVGVybVJldGVudGlvblBvbGljeUF6dXJlQXN5bmNPcGVyYXRpb24vZmEzMGUxOGEtYWIzYi00OTlhLTkwMmEtYzZmNTllOGYxMGU1P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "6a37a655-a02a-42c4-9157-b036f0230f5f" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "80" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -713,29 +719,23 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyOperationResults/4c538ab4-6731-40f7-8e02-5c624cec4ca6?api-version=2018-06-01-preview" - ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyAzureAsyncOperation/4c538ab4-6731-40f7-8e02-5c624cec4ca6?api-version=2018-06-01-preview" - ], "x-ms-request-id": [ - "4c538ab4-6731-40f7-8e02-5c624cec4ca6" + "a49a58c8-eb27-43dc-bce7-8ccac1ae4bd6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" ], "x-ms-correlation-request-id": [ - "b994f06a-aa00-4d8b-ace6-e843967a9238" + "b04d670d-737d-46b3-b306-cf37d0f27751" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T012210Z:b994f06a-aa00-4d8b-ace6-e843967a9238" + "NORTHEUROPE:20200304T191747Z:b04d670d-737d-46b3-b306-cf37d0f27751" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -744,10 +744,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:22:10 GMT" + "Wed, 04 Mar 2020 19:17:47 GMT" ], "Content-Length": [ - "90" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -756,12 +756,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpsertDatabaseBackupArchivalPolicyV2\",\r\n \"startTime\": \"2020-03-04T01:22:10.74Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"name\": \"fa30e18a-ab3b-499a-902a-c6f59e8f10e5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T19:17:16.073Z\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyAzureAsyncOperation/4c538ab4-6731-40f7-8e02-5c624cec4ca6?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9tYW5hZ2VkSW5zdGFuY2VMb25nVGVybVJldGVudGlvblBvbGljeUF6dXJlQXN5bmNPcGVyYXRpb24vNGM1MzhhYjQtNjczMS00MGY3LThlMDItNWM2MjRjZWM0Y2E2P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/managedInstanceLongTermRetentionPolicyAzureAsyncOperation/fa30e18a-ab3b-499a-902a-c6f59e8f10e5?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9tYW5hZ2VkSW5zdGFuY2VMb25nVGVybVJldGVudGlvblBvbGljeUF6dXJlQXN5bmNPcGVyYXRpb24vZmEzMGUxOGEtYWIzYi00OTlhLTkwMmEtYzZmNTllOGYxMGU1P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -769,7 +769,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -783,19 +783,19 @@ "15" ], "x-ms-request-id": [ - "4c246880-d5ab-40dc-90a5-84e9aa19df78" + "f741c666-fec3-4806-a861-31392d71cb42" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14991" ], "x-ms-correlation-request-id": [ - "f582e877-e1d5-4424-aa1a-ff143209fd12" + "74cb7d85-865f-49d6-b6fe-ae42f43110e2" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T012226Z:f582e877-e1d5-4424-aa1a-ff143209fd12" + "NORTHEUROPE:20200304T191802Z:74cb7d85-865f-49d6-b6fe-ae42f43110e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -804,10 +804,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:22:25 GMT" + "Wed, 04 Mar 2020 19:18:02 GMT" ], "Content-Length": [ - "106" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -816,12 +816,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"4c538ab4-6731-40f7-8e02-5c624cec4ca6\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-04T01:22:10.74Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"fa30e18a-ab3b-499a-902a-c6f59e8f10e5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-04T19:17:16.073Z\"\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "709b4d09-b251-4ae8-8998-e1954ee45cf9" + "SubscriptionId": "8cfb8b62-bcd6-4713-89ad-18097f75cc5b" } } \ No newline at end of file From 5ccf6ac3f74b1192981c0472e56934c20eed0f8d Mon Sep 17 00:00:00 2001 From: xaliciayang Date: Wed, 4 Mar 2020 11:48:19 -0800 Subject: [PATCH 58/61] re-recorded backup tests --- .../ManagedDatabaseBackupTests.ps1 | 10 +- ...anagedInstanceLongTermRetentionBackup.json | 760 ++++++++---------- ...TermRetentionResourceGroupBasedBackup.json | 574 +++++++------ 3 files changed, 672 insertions(+), 672 deletions(-) diff --git a/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.ps1 b/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.ps1 index 8df1885a97c2..2a50e5ff36be 100644 --- a/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.ps1 +++ b/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseBackupTests.ps1 @@ -224,8 +224,8 @@ function Test-ManagedInstanceLongTermRetentionBackup $resourceGroup = "cl_stage_sea_cv" $locationName = "southeastasia" $managedInstanceName = "seageodr-gen5-gp" - $databaseName = "target1" - $databaseWithRemovableBackup = "test"; + $databaseName = "ps-test-1" + $databaseWithRemovableBackup = "ps-test-2"; # Basic Get Tests $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName @@ -249,7 +249,7 @@ function Test-ManagedInstanceLongTermRetentionBackup # Restore Test $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName - $restoredDatabase = "ps-test-restore-1" + $restoredDatabase = "ps-test-restore-2" $db = Restore-AzSqlInstanceDatabase -FromLongTermRetentionBackup -ResourceId $backups[0].ResourceId -TargetResourceGroupName $resourceGroup -TargetInstanceName $managedInstanceName -TargetInstanceDatabaseName $restoredDatabase Assert-AreEqual $db.Name $restoredDatabase @@ -280,7 +280,7 @@ function Test-ManagedInstanceLongTermRetentionResourceGroupBasedBackup $resourceGroup = "cl_stage_sea_cv" $locationName = "southeastasia" $managedInstanceName = "seageodr-gen5-gp" - $databaseName = "test" + $databaseName = "ps-test-3" # Basic Get Tests $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -ResourceGroupName $resourceGroup @@ -308,7 +308,7 @@ function Test-ManagedInstanceLongTermRetentionResourceGroupBasedBackup Assert-AreNotEqual $backups.Count 0 # Restore Test - $restoredDatabase = "ps-test-restore-with-rg-1" + $restoredDatabase = "ps-test-restore-with-rg-2" $backups = Get-AzSqlInstanceDatabaseLongTermRetentionBackup -Location $locationName -ResourceGroupName $resourceGroup $db = Restore-AzSqlInstanceDatabase -FromLongTermRetentionBackup -ResourceId $backups[0].ResourceId -TargetResourceGroupName $resourceGroup -TargetInstanceName $managedInstanceName -TargetInstanceDatabaseName $restoredDatabase Assert-AreEqual $db.Name $restoredDatabase diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionBackup.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionBackup.json index abcee749e4fe..58ad81355e35 100644 --- a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionBackup.json +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionBackup.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcz9vbmx5TGF0ZXN0UGVyRGF0YWJhc2U9ZmFsc2UmYXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94c0808e-9f29-43b4-b8f1-9aff009ddbaa" + "4d3b2bc4-3c49-415c-b873-18f7d90acc57" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -27,7 +27,7 @@ "no-cache" ], "x-ms-request-id": [ - "b6175b5a-1245-477b-92fd-2ada2e1f9bf6" + "9e67f48d-4e27-4888-8972-75c637977b51" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -36,10 +36,10 @@ "14999" ], "x-ms-correlation-request-id": [ - "11a65c20-78a8-4794-b43a-8c93f049e7c3" + "aafa479d-0e7b-4b95-abd1-5f22d96f265c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T012854Z:11a65c20-78a8-4794-b43a-8c93f049e7c3" + "NORTHEUROPE:20200304T193627Z:aafa479d-0e7b-4b95-abd1-5f22d96f265c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,10 +48,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:28:53 GMT" + "Wed, 04 Mar 2020 19:36:27 GMT" ], "Content-Length": [ - "12119" + "10541" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60,17 +60,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-ltr-policy-test\",\r\n \"backupTime\": \"2020-03-04T01:25:46Z\",\r\n \"backupExpirationTime\": \"2020-03-11T01:25:46Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-ltr-policy-test/longTermRetentionManagedInstanceBackups/f22f0729-4b77-45bd-a8e2-623406aee7ad;132277587460000000\",\r\n \"name\": \"f22f0729-4b77-45bd-a8e2-623406aee7ad;132277587460000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcz9vbmx5TGF0ZXN0UGVyRGF0YWJhc2U9ZmFsc2UmYXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "59617ee2-2aca-44a8-9a6f-b42a89096d15" + "1863aaa3-0293-4fb2-86ce-16c0fecdab85" ], "Accept-Language": [ "en-US" @@ -79,7 +79,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -90,7 +90,7 @@ "no-cache" ], "x-ms-request-id": [ - "3787fa50-0db8-4b15-bba1-3cc945514c38" + "0d7e0da6-d577-4408-afbe-b73b7b96cd22" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -99,10 +99,10 @@ "14991" ], "x-ms-correlation-request-id": [ - "86bbea37-15a6-4040-939c-3bd085a4bc9e" + "37fa1956-30bc-4f9e-a8ad-6adb056a1b65" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T012857Z:86bbea37-15a6-4040-939c-3bd085a4bc9e" + "NORTHEUROPE:20200304T193630Z:37fa1956-30bc-4f9e-a8ad-6adb056a1b65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,10 +111,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:28:56 GMT" + "Wed, 04 Mar 2020 19:36:30 GMT" ], "Content-Length": [ - "12119" + "10541" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,17 +123,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-ltr-policy-test\",\r\n \"backupTime\": \"2020-03-04T01:25:46Z\",\r\n \"backupExpirationTime\": \"2020-03-11T01:25:46Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-ltr-policy-test/longTermRetentionManagedInstanceBackups/f22f0729-4b77-45bd-a8e2-623406aee7ad;132277587460000000\",\r\n \"name\": \"f22f0729-4b77-45bd-a8e2-623406aee7ad;132277587460000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcz9vbmx5TGF0ZXN0UGVyRGF0YWJhc2U9ZmFsc2UmYXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c07ded2c-3a0e-4090-a2f3-471516254b19" + "5cb9836b-e490-420f-aa95-5f2e24517e10" ], "Accept-Language": [ "en-US" @@ -142,7 +142,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -153,7 +153,7 @@ "no-cache" ], "x-ms-request-id": [ - "452065b1-9f00-455b-ab76-77a9d2a8ee01" + "d04e20f0-552e-4b69-86e6-513fdc9abde3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -162,10 +162,10 @@ "14998" ], "x-ms-correlation-request-id": [ - "342d36c1-ad93-421d-a733-aa5152ee41e2" + "dbdb75c6-5de3-41db-b689-4621592ef56b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T012854Z:342d36c1-ad93-421d-a733-aa5152ee41e2" + "NORTHEUROPE:20200304T193627Z:dbdb75c6-5de3-41db-b689-4621592ef56b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,10 +174,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:28:54 GMT" + "Wed, 04 Mar 2020 19:36:27 GMT" ], "Content-Length": [ - "12119" + "10541" ], "Content-Type": [ "application/json; charset=utf-8" @@ -186,17 +186,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-ltr-policy-test\",\r\n \"backupTime\": \"2020-03-04T01:25:46Z\",\r\n \"backupExpirationTime\": \"2020-03-11T01:25:46Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-ltr-policy-test/longTermRetentionManagedInstanceBackups/f22f0729-4b77-45bd-a8e2-623406aee7ad;132277587460000000\",\r\n \"name\": \"f22f0729-4b77-45bd-a8e2-623406aee7ad;132277587460000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uRGF0YWJhc2VzL3RhcmdldDEvbG9uZ1Rlcm1SZXRlbnRpb25NYW5hZ2VkSW5zdGFuY2VCYWNrdXBzP29ubHlMYXRlc3RQZXJEYXRhYmFzZT1mYWxzZSZhcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uRGF0YWJhc2VzL3BzLXRlc3QtMS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZUJhY2t1cHM/b25seUxhdGVzdFBlckRhdGFiYXNlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "61945ca2-d56a-4c58-825d-23af82f85b64" + "1f1f1879-e3ce-4c76-b586-4ed378b8379f" ], "Accept-Language": [ "en-US" @@ -205,7 +205,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -216,7 +216,7 @@ "no-cache" ], "x-ms-request-id": [ - "4e7c481a-bb33-4ea9-8f21-38e48067c37b" + "f0826be7-ff80-442c-bea7-f7d1c0f2eee5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -225,10 +225,10 @@ "14997" ], "x-ms-correlation-request-id": [ - "b173d8f3-8f8d-43c2-a6dc-cd9f13754e2e" + "c2bdba37-e90f-4f59-bc57-cb75a999620f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T012854Z:b173d8f3-8f8d-43c2-a6dc-cd9f13754e2e" + "NORTHEUROPE:20200304T193628Z:c2bdba37-e90f-4f59-bc57-cb75a999620f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,10 +237,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:28:54 GMT" + "Wed, 04 Mar 2020 19:36:28 GMT" ], "Content-Length": [ - "1489" + "754" ], "Content-Type": [ "application/json; charset=utf-8" @@ -249,17 +249,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff%3B132270644280000000?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uRGF0YWJhc2VzL3RhcmdldDEvbG9uZ1Rlcm1SZXRlbnRpb25NYW5hZ2VkSW5zdGFuY2VCYWNrdXBzL2FlMWVhMTQ5LWQ1ZmYtNDU1NC05MzMzLTMzZGViZTBiOTJmZiUzQjEzMjI3MDY0NDI4MDAwMDAwMD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931%3B132277179870000000?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uRGF0YWJhc2VzL3BzLXRlc3QtMS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZUJhY2t1cHMvMGNmNmZiYmQtMDA0MC00YTJiLWI5NWQtNTkxZWJhMzU4OTMxJTNCMTMyMjc3MTc5ODcwMDAwMDAwP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "07bed9e3-731c-45dc-8c37-b66ecfeec103" + "5259916c-43fb-470b-ba7d-5e8fb81ed569" ], "Accept-Language": [ "en-US" @@ -268,7 +268,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -279,7 +279,7 @@ "no-cache" ], "x-ms-request-id": [ - "128358ba-2a12-4380-8262-58809ba24c24" + "dfc87066-c3ce-4b89-84d6-2925ae391ff3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -288,10 +288,10 @@ "14996" ], "x-ms-correlation-request-id": [ - "88b61d45-3277-4aa6-9677-83ade7376e1d" + "3ba204b7-8856-4308-bed2-cc7d3428f102" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T012855Z:88b61d45-3277-4aa6-9677-83ade7376e1d" + "NORTHEUROPE:20200304T193628Z:3ba204b7-8856-4308-bed2-cc7d3428f102" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -300,10 +300,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:28:54 GMT" + "Wed, 04 Mar 2020 19:36:28 GMT" ], "Content-Length": [ - "738" + "742" ], "Content-Type": [ "application/json; charset=utf-8" @@ -312,17 +312,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=true&api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uRGF0YWJhc2VzL3RhcmdldDEvbG9uZ1Rlcm1SZXRlbnRpb25NYW5hZ2VkSW5zdGFuY2VCYWNrdXBzP29ubHlMYXRlc3RQZXJEYXRhYmFzZT10cnVlJmFwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=true&api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uRGF0YWJhc2VzL3BzLXRlc3QtMS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZUJhY2t1cHM/b25seUxhdGVzdFBlckRhdGFiYXNlPXRydWUmYXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4ffce0f7-43f2-4760-bdaa-6199a8222f6a" + "0fbc1e5c-d4a8-4f03-b6e3-23cb5a878bc9" ], "Accept-Language": [ "en-US" @@ -331,7 +331,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -342,7 +342,7 @@ "no-cache" ], "x-ms-request-id": [ - "a8fb2a3d-dc3d-4b50-b418-2a458c706b60" + "1dd4ea71-e8fa-4c67-8696-5f076c9eddf4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -351,10 +351,10 @@ "14995" ], "x-ms-correlation-request-id": [ - "5e9324c8-a65f-4bbb-9c3e-5e232bb56675" + "28c87417-d7d7-4875-9c76-8668a0f1f3a5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T012855Z:5e9324c8-a65f-4bbb-9c3e-5e232bb56675" + "NORTHEUROPE:20200304T193628Z:28c87417-d7d7-4875-9c76-8668a0f1f3a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -363,10 +363,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:28:55 GMT" + "Wed, 04 Mar 2020 19:36:28 GMT" ], "Content-Length": [ - "750" + "754" ], "Content-Type": [ "application/json; charset=utf-8" @@ -375,17 +375,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=true&databaseState=All&api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=true&databaseState=All&api-version=2018-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcz9vbmx5TGF0ZXN0UGVyRGF0YWJhc2U9dHJ1ZSZkYXRhYmFzZVN0YXRlPUFsbCZhcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14963764-b4dc-4a97-8413-2d486e2bfb62" + "cc8c89b1-9e0a-457d-8a43-c7ee5bf0432b" ], "Accept-Language": [ "en-US" @@ -394,7 +394,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -405,7 +405,7 @@ "no-cache" ], "x-ms-request-id": [ - "d1e77eea-4a5b-4c20-a631-c41c55f4dd54" + "06c8035e-55ad-4826-8e3e-6fad52fb1742" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -414,10 +414,10 @@ "14994" ], "x-ms-correlation-request-id": [ - "1430f80e-75bc-4194-8dd6-f748fc9d7768" + "86bcc537-9a7a-46f5-99f8-c4502f8e4b94" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T012856Z:1430f80e-75bc-4194-8dd6-f748fc9d7768" + "NORTHEUROPE:20200304T193629Z:86bcc537-9a7a-46f5-99f8-c4502f8e4b94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -426,10 +426,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:28:55 GMT" + "Wed, 04 Mar 2020 19:36:29 GMT" ], "Content-Length": [ - "11380" + "9802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -438,17 +438,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-ltr-policy-test\",\r\n \"backupTime\": \"2020-03-04T01:25:46Z\",\r\n \"backupExpirationTime\": \"2020-03-11T01:25:46Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-ltr-policy-test/longTermRetentionManagedInstanceBackups/f22f0729-4b77-45bd-a8e2-623406aee7ad;132277587460000000\",\r\n \"name\": \"f22f0729-4b77-45bd-a8e2-623406aee7ad;132277587460000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/target1?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3RhcmdldDE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtMT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "819b807e-ef04-4b5d-9bed-4654c737c235" + "3eb446d4-e18e-4b52-8e9f-569782293cf9" ], "Accept-Language": [ "en-US" @@ -457,7 +457,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -468,7 +468,7 @@ "no-cache" ], "x-ms-request-id": [ - "da15bf47-7513-4aa9-b415-616bd5fa5145" + "6d5bdca9-725e-4ccc-a588-03ea3960e119" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -477,10 +477,10 @@ "14993" ], "x-ms-correlation-request-id": [ - "fdc42483-7dd4-417b-b96e-193f42437f9b" + "b4776bb7-5c1e-45c2-99e5-07214db52ee3" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T012856Z:fdc42483-7dd4-417b-b96e-193f42437f9b" + "NORTHEUROPE:20200304T193629Z:b4776bb7-5c1e-45c2-99e5-07214db52ee3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -489,7 +489,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:28:55 GMT" + "Wed, 04 Mar 2020 19:36:29 GMT" ], "Content-Length": [ "474" @@ -501,17 +501,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-02-25T00:29:11.687Z\",\r\n \"earliestRestorePoint\": \"2020-02-26T01:28:56.3729541Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/target1\",\r\n \"name\": \"target1\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-03T14:04:06.987Z\",\r\n \"earliestRestorePoint\": \"2020-03-03T14:06:29.743Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-1\",\r\n \"name\": \"ps-test-1\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=true&api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy90YXJnZXQxL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcz9vbmx5TGF0ZXN0UGVyRGF0YWJhc2U9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=true&api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy9wcy10ZXN0LTEvbG9uZ1Rlcm1SZXRlbnRpb25NYW5hZ2VkSW5zdGFuY2VCYWNrdXBzP29ubHlMYXRlc3RQZXJEYXRhYmFzZT10cnVlJmFwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4d0d8089-941c-4a5c-9747-31599b2327f1" + "2ce793f5-50f8-4805-baef-309941501e7e" ], "Accept-Language": [ "en-US" @@ -520,7 +520,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -531,7 +531,7 @@ "no-cache" ], "x-ms-request-id": [ - "ee9a10b7-63f1-4cbc-876a-1e0fbf5ed9a1" + "b13d064e-5b87-40ce-8010-637a9ed4bc39" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -540,10 +540,10 @@ "14992" ], "x-ms-correlation-request-id": [ - "e418968e-979e-4e89-b61f-c465a9479996" + "7c556c73-abe7-472c-af5c-179135079936" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T012856Z:e418968e-979e-4e89-b61f-c465a9479996" + "NORTHEUROPE:20200304T193630Z:7c556c73-abe7-472c-af5c-179135079936" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -552,10 +552,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:28:56 GMT" + "Wed, 04 Mar 2020 19:36:29 GMT" ], "Content-Length": [ - "750" + "754" ], "Content-Type": [ "application/json; charset=utf-8" @@ -564,17 +564,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp?api-version=2018-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3A/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1617398f-c50d-4c06-be79-97e4e1d9f50b" + "196a90fb-d53c-45e3-949f-efc0864c62bc" ], "Accept-Language": [ "en-US" @@ -583,7 +583,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -594,7 +594,7 @@ "no-cache" ], "x-ms-request-id": [ - "3bf7a51f-7242-4c1a-b754-1bc1979acdd8" + "35dd4c13-00cc-4442-8232-7aeda3c5dc01" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -603,10 +603,10 @@ "14990" ], "x-ms-correlation-request-id": [ - "8e0f84c8-b046-4071-b5b7-cda235e4315a" + "c30d0398-5a98-4f9b-9c7a-29bc1f213c56" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T012857Z:8e0f84c8-b046-4071-b5b7-cda235e4315a" + "NORTHEUROPE:20200304T193631Z:c30d0398-5a98-4f9b-9c7a-29bc1f213c56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -615,7 +615,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:28:56 GMT" + "Wed, 04 Mar 2020 19:36:31 GMT" ], "Content-Length": [ "873" @@ -627,17 +627,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 8\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"ps-test-mi.lkgt1aeda54f909eb.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"cloudSA\",\r\n \"subnetId\": \"/subscriptions/741fd0f5-9cb8-442c-91c3-3ef4ca231c2a/resourceGroups/cloudlifter/providers/Microsoft.ClassicNetwork/virtualNetworks/cloudlifter-runners-stage-sea/subnets/Gen5GeoDR\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 8,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"lkgt1aeda54f909eb\",\r\n \"publicDataEndpointEnabled\": true,\r\n \"proxyOverride\": \"Proxy\",\r\n \"timezoneId\": \"UTC\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi\",\r\n \"name\": \"ps-test-mi\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 8\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"seageodr-gen5-gp.lkgt1aeda54f909eb.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"cloudSA\",\r\n \"subnetId\": \"/subscriptions/741fd0f5-9cb8-442c-91c3-3ef4ca231c2a/resourceGroups/cloudlifter/providers/Microsoft.ClassicNetwork/virtualNetworks/cloudlifter-runners-stage-sea/subnets/Gen5GeoDR\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 8,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"lkgt1aeda54f909eb\",\r\n \"publicDataEndpointEnabled\": true,\r\n \"proxyOverride\": \"Proxy\",\r\n \"timezoneId\": \"UTC\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp\",\r\n \"name\": \"seageodr-gen5-gp\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-restore-x?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS14P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-restore-2?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS0yP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"createMode\": \"RestoreLongTermRetentionBackup\",\r\n \"longTermRetentionBackupResourceId\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"createMode\": \"RestoreLongTermRetentionBackup\",\r\n \"longTermRetentionBackupResourceId\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "af0a3063-8e21-423a-8e73-ee1784aa3986" + "35beac5c-97c5-4b04-ad8a-972d6db8b36f" ], "Accept-Language": [ "en-US" @@ -646,13 +646,13 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "504" + "470" ] }, "ResponseHeaders": { @@ -663,16 +663,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/982658a2-8603-499e-a006-9bf9b7af3038?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/f58c3fd7-fa3f-44ae-be56-812155ee7cf2?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/982658a2-8603-499e-a006-9bf9b7af3038?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/f58c3fd7-fa3f-44ae-be56-812155ee7cf2?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "982658a2-8603-499e-a006-9bf9b7af3038" + "f58c3fd7-fa3f-44ae-be56-812155ee7cf2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -681,10 +681,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "bc35fe38-e154-4224-bb93-817559faccf4" + "1cc05d76-85d1-4829-a178-24d190f529c7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T012901Z:bc35fe38-e154-4224-bb93-817559faccf4" + "NORTHEUROPE:20200304T193633Z:1cc05d76-85d1-4829-a178-24d190f529c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -693,10 +693,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:29:01 GMT" + "Wed, 04 Mar 2020 19:36:32 GMT" ], "Content-Length": [ - "95" + "94" ], "Content-Type": [ "application/json; charset=utf-8" @@ -705,12 +705,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateManagedRestoreFromLtrBackupRequest\",\r\n \"startTime\": \"2020-03-04T01:29:01.283Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateManagedRestoreFromLtrBackupRequest\",\r\n \"startTime\": \"2020-03-04T19:36:33.17Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/982658a2-8603-499e-a006-9bf9b7af3038?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOTgyNjU4YTItODYwMy00OTllLWEwMDYtOWJmOWI3YWYzMDM4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/f58c3fd7-fa3f-44ae-be56-812155ee7cf2?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZjU4YzNmZDctZmEzZi00NGFlLWJlNTYtODEyMTU1ZWU3Y2YyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -718,7 +718,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -732,7 +732,7 @@ "15" ], "x-ms-request-id": [ - "5319ac69-6202-4be2-90b6-525fa821deba" + "4f0c9f75-feea-4e92-91fc-2003924ebb16" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -741,10 +741,10 @@ "14989" ], "x-ms-correlation-request-id": [ - "e1a4c5c0-c30c-4cf4-8224-2306a52e9833" + "6be84457-71d2-4553-85c1-b61a2fe3cf08" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T012916Z:e1a4c5c0-c30c-4cf4-8224-2306a52e9833" + "NORTHEUROPE:20200304T193648Z:6be84457-71d2-4553-85c1-b61a2fe3cf08" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -753,10 +753,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:29:16 GMT" + "Wed, 04 Mar 2020 19:36:48 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -765,12 +765,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"982658a2-8603-499e-a006-9bf9b7af3038\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T01:29:01.283Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"f58c3fd7-fa3f-44ae-be56-812155ee7cf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T19:36:33.17Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/982658a2-8603-499e-a006-9bf9b7af3038?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOTgyNjU4YTItODYwMy00OTllLWEwMDYtOWJmOWI3YWYzMDM4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/f58c3fd7-fa3f-44ae-be56-812155ee7cf2?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZjU4YzNmZDctZmEzZi00NGFlLWJlNTYtODEyMTU1ZWU3Y2YyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -778,7 +778,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -792,7 +792,7 @@ "15" ], "x-ms-request-id": [ - "189c6fd7-e0f9-45aa-8f29-e9af6a0d14c9" + "2d9cabb9-4248-439b-8052-2e3364b5e530" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -801,10 +801,10 @@ "14988" ], "x-ms-correlation-request-id": [ - "ba7d3c6b-4625-4825-a00e-79320421181f" + "2849557b-7f5d-46a6-ab7b-d966f7fd2df0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T012932Z:ba7d3c6b-4625-4825-a00e-79320421181f" + "NORTHEUROPE:20200304T193704Z:2849557b-7f5d-46a6-ab7b-d966f7fd2df0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -813,10 +813,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:29:31 GMT" + "Wed, 04 Mar 2020 19:37:03 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -825,12 +825,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"982658a2-8603-499e-a006-9bf9b7af3038\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T01:29:01.283Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"f58c3fd7-fa3f-44ae-be56-812155ee7cf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T19:36:33.17Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/982658a2-8603-499e-a006-9bf9b7af3038?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOTgyNjU4YTItODYwMy00OTllLWEwMDYtOWJmOWI3YWYzMDM4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/f58c3fd7-fa3f-44ae-be56-812155ee7cf2?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZjU4YzNmZDctZmEzZi00NGFlLWJlNTYtODEyMTU1ZWU3Y2YyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -838,7 +838,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -852,7 +852,7 @@ "15" ], "x-ms-request-id": [ - "8a5023da-109b-4def-9cb1-784179bf6ab7" + "236cc9c5-a829-49a7-9d21-f55ffe747dd6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -861,10 +861,10 @@ "14987" ], "x-ms-correlation-request-id": [ - "8953aa78-975e-428a-be3a-2e25186b7733" + "e626da9f-4d20-46cc-b92d-9ac98659af55" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T012947Z:8953aa78-975e-428a-be3a-2e25186b7733" + "NORTHEUROPE:20200304T193719Z:e626da9f-4d20-46cc-b92d-9ac98659af55" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -873,10 +873,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:29:47 GMT" + "Wed, 04 Mar 2020 19:37:18 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -885,12 +885,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"982658a2-8603-499e-a006-9bf9b7af3038\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T01:29:01.283Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"f58c3fd7-fa3f-44ae-be56-812155ee7cf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T19:36:33.17Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/982658a2-8603-499e-a006-9bf9b7af3038?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOTgyNjU4YTItODYwMy00OTllLWEwMDYtOWJmOWI3YWYzMDM4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/f58c3fd7-fa3f-44ae-be56-812155ee7cf2?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZjU4YzNmZDctZmEzZi00NGFlLWJlNTYtODEyMTU1ZWU3Y2YyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -898,7 +898,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -912,7 +912,7 @@ "15" ], "x-ms-request-id": [ - "2c86fa91-70e6-433c-84eb-37047df3d347" + "7f1c2ac3-112f-4bef-9d49-d3950dc0679d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "14986" @@ -921,10 +921,10 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "2ad91806-e139-40f8-b410-425b2ef6691b" + "a4b340ca-1286-4b2b-a8dd-2c8c08eaffff" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013002Z:2ad91806-e139-40f8-b410-425b2ef6691b" + "NORTHEUROPE:20200304T193734Z:a4b340ca-1286-4b2b-a8dd-2c8c08eaffff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -933,10 +933,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:30:02 GMT" + "Wed, 04 Mar 2020 19:37:34 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -945,12 +945,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"982658a2-8603-499e-a006-9bf9b7af3038\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T01:29:01.283Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"f58c3fd7-fa3f-44ae-be56-812155ee7cf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T19:36:33.17Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/982658a2-8603-499e-a006-9bf9b7af3038?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOTgyNjU4YTItODYwMy00OTllLWEwMDYtOWJmOWI3YWYzMDM4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/f58c3fd7-fa3f-44ae-be56-812155ee7cf2?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZjU4YzNmZDctZmEzZi00NGFlLWJlNTYtODEyMTU1ZWU3Y2YyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -958,7 +958,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -972,7 +972,7 @@ "15" ], "x-ms-request-id": [ - "32529d5a-937d-41f3-b13c-b5b443d9b080" + "eb489ad5-b0b1-470e-a52e-42644e3fe7c3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -981,10 +981,10 @@ "14985" ], "x-ms-correlation-request-id": [ - "5bb63fb9-e574-4777-be66-a5ef929ec077" + "ef333b67-e438-46d7-a3fc-4a919bd5ff8f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013018Z:5bb63fb9-e574-4777-be66-a5ef929ec077" + "NORTHEUROPE:20200304T193750Z:ef333b67-e438-46d7-a3fc-4a919bd5ff8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -993,10 +993,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:30:18 GMT" + "Wed, 04 Mar 2020 19:37:50 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1005,12 +1005,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"982658a2-8603-499e-a006-9bf9b7af3038\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T01:29:01.283Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"f58c3fd7-fa3f-44ae-be56-812155ee7cf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T19:36:33.17Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/982658a2-8603-499e-a006-9bf9b7af3038?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOTgyNjU4YTItODYwMy00OTllLWEwMDYtOWJmOWI3YWYzMDM4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/f58c3fd7-fa3f-44ae-be56-812155ee7cf2?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZjU4YzNmZDctZmEzZi00NGFlLWJlNTYtODEyMTU1ZWU3Y2YyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1018,7 +1018,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -1032,7 +1032,7 @@ "15" ], "x-ms-request-id": [ - "e315859f-973e-41f7-9dbc-497b217c849f" + "ba96c546-2ca6-42cc-8173-df5d6accaa1c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1041,10 +1041,10 @@ "14984" ], "x-ms-correlation-request-id": [ - "f0104f1e-793d-4114-b528-8316b45ed021" + "5a92631c-c99f-46eb-bb2e-ae90bca3497d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013034Z:f0104f1e-793d-4114-b528-8316b45ed021" + "NORTHEUROPE:20200304T193805Z:5a92631c-c99f-46eb-bb2e-ae90bca3497d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1053,10 +1053,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:30:33 GMT" + "Wed, 04 Mar 2020 19:38:05 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1065,12 +1065,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"982658a2-8603-499e-a006-9bf9b7af3038\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T01:29:01.283Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"f58c3fd7-fa3f-44ae-be56-812155ee7cf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T19:36:33.17Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/982658a2-8603-499e-a006-9bf9b7af3038?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOTgyNjU4YTItODYwMy00OTllLWEwMDYtOWJmOWI3YWYzMDM4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/f58c3fd7-fa3f-44ae-be56-812155ee7cf2?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZjU4YzNmZDctZmEzZi00NGFlLWJlNTYtODEyMTU1ZWU3Y2YyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1078,7 +1078,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -1092,7 +1092,7 @@ "15" ], "x-ms-request-id": [ - "6fbd0f8e-3e72-4717-a86c-71cb8c25223a" + "88ac18a6-21b3-4ec1-b901-4629fb9da01c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1101,10 +1101,10 @@ "14983" ], "x-ms-correlation-request-id": [ - "01996028-a190-4a24-bda3-214162959304" + "5035108c-d654-48eb-b9d0-02b20f9185bb" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013049Z:01996028-a190-4a24-bda3-214162959304" + "NORTHEUROPE:20200304T193821Z:5035108c-d654-48eb-b9d0-02b20f9185bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1113,10 +1113,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:30:48 GMT" + "Wed, 04 Mar 2020 19:38:21 GMT" ], "Content-Length": [ - "108" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1125,12 +1125,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"982658a2-8603-499e-a006-9bf9b7af3038\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T01:29:01.283Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"f58c3fd7-fa3f-44ae-be56-812155ee7cf2\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-04T19:36:33.17Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/982658a2-8603-499e-a006-9bf9b7af3038?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOTgyNjU4YTItODYwMy00OTllLWEwMDYtOWJmOWI3YWYzMDM4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-restore-2?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS0yP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1138,7 +1138,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -1148,11 +1148,8 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-request-id": [ - "ab7c8202-8b6b-4cbf-9ed9-a51e7009fb52" + "ceb2a956-1a50-4d67-a960-99729c7ba86d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1161,10 +1158,10 @@ "14982" ], "x-ms-correlation-request-id": [ - "49f475d9-11d3-4195-8dea-6e9a92b701f0" + "a686bcef-a105-4e05-a729-0f03dc5d1036" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013104Z:49f475d9-11d3-4195-8dea-6e9a92b701f0" + "NORTHEUROPE:20200304T193821Z:a686bcef-a105-4e05-a729-0f03dc5d1036" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1173,10 +1170,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:31:04 GMT" + "Wed, 04 Mar 2020 19:38:21 GMT" ], "Content-Length": [ - "108" + "439" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1185,80 +1182,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"982658a2-8603-499e-a006-9bf9b7af3038\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T01:29:01.283Z\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-04T19:36:34.06Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-restore-2\",\r\n \"name\": \"ps-test-restore-2\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/982658a2-8603-499e-a006-9bf9b7af3038?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOTgyNjU4YTItODYwMy00OTllLWEwMDYtOWJmOWI3YWYzMDM4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-restore-2?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS0yP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "a8595cd2-db08-4b71-9e62-3df14c9f5bdc" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "30c8a81d-1e4b-4753-a61f-e8c5c144dfb5" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013120Z:30c8a81d-1e4b-4753-a61f-e8c5c144dfb5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 04 Mar 2020 01:31:19 GMT" - ], - "Content-Length": [ - "107" + "x-ms-client-request-id": [ + "d9a1b712-a717-4a6c-9ccc-e47f67a9001c" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Accept-Language": [ + "en-US" ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"982658a2-8603-499e-a006-9bf9b7af3038\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-04T01:29:01.283Z\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-restore-x?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS14P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -1269,19 +1212,19 @@ "no-cache" ], "x-ms-request-id": [ - "8124f604-f32c-49bd-b295-3c915286ff7c" + "d60b0035-4769-4f4e-99be-ae32e8357ff9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14975" ], "x-ms-correlation-request-id": [ - "58a6699a-2398-414b-80bc-dcf8e92be28c" + "055dc5df-22c6-400b-98fd-f5ae4da0259c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013120Z:58a6699a-2398-414b-80bc-dcf8e92be28c" + "NORTHEUROPE:20200304T193840Z:055dc5df-22c6-400b-98fd-f5ae4da0259c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1290,10 +1233,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:31:20 GMT" + "Wed, 04 Mar 2020 19:38:39 GMT" ], "Content-Length": [ - "490" + "439" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1302,17 +1245,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-04T01:29:01.673Z\",\r\n \"earliestRestorePoint\": \"2020-03-04T01:30:50.453Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-restore-x\",\r\n \"name\": \"ps-test-restore-x\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-04T19:36:34.06Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-restore-2\",\r\n \"name\": \"ps-test-restore-2\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-restore-x?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS14P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uRGF0YWJhc2VzL3BzLXRlc3QtMi9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZUJhY2t1cHM/b25seUxhdGVzdFBlckRhdGFiYXNlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "96bf2fbf-8b78-437d-977b-85f4a5f37c83" + "e49affdc-e178-42a3-b2b6-48f7574b7cf3" ], "Accept-Language": [ "en-US" @@ -1321,7 +1264,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -1332,19 +1275,19 @@ "no-cache" ], "x-ms-request-id": [ - "5b9e6c3b-884d-4912-a1ea-cf90d3a043c1" + "7c3a4203-2e88-4509-86ec-e1e67b079ba8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14981" ], "x-ms-correlation-request-id": [ - "e8697836-3390-4545-adf3-dbc3fbe25bda" + "e3b9d7b5-d562-471e-a0b8-805c45051fda" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013139Z:e8697836-3390-4545-adf3-dbc3fbe25bda" + "NORTHEUROPE:20200304T193822Z:e3b9d7b5-d562-471e-a0b8-805c45051fda" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1353,10 +1296,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:31:38 GMT" + "Wed, 04 Mar 2020 19:38:21 GMT" ], "Content-Length": [ - "490" + "754" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1365,17 +1308,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-04T01:29:01.673Z\",\r\n \"earliestRestorePoint\": \"2020-03-04T01:30:50.453Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-restore-x\",\r\n \"name\": \"ps-test-restore-x\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uRGF0YWJhc2VzL3Rlc3QvbG9uZ1Rlcm1SZXRlbnRpb25NYW5hZ2VkSW5zdGFuY2VCYWNrdXBzP29ubHlMYXRlc3RQZXJEYXRhYmFzZT1mYWxzZSZhcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47%3B132277182820000000?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uRGF0YWJhc2VzL3BzLXRlc3QtMi9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZUJhY2t1cHMvYTJhMGJkNGEtNWRhYi00OTA3LWEwZjEtNWJjZmU5MDUzZTQ3JTNCMTMyMjc3MTgyODIwMDAwMDAwP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "393e338b-efa5-406d-a48a-99f90b3f408d" + "24db0d2e-d970-467f-b5b9-60781d3bc3b3" ], "Accept-Language": [ "en-US" @@ -1384,7 +1327,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -1395,19 +1338,19 @@ "no-cache" ], "x-ms-request-id": [ - "6d5e1aba-13e6-44be-aeac-ae0fc1fb0ad9" + "526a9a99-a6e8-4d97-9f5f-25ef01c0655b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14980" ], "x-ms-correlation-request-id": [ - "20ecd42c-2210-4400-b882-f4762a9050cc" + "9e60a198-0b7e-45d6-9534-03761cca51a0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013121Z:20ecd42c-2210-4400-b882-f4762a9050cc" + "NORTHEUROPE:20200304T193822Z:9e60a198-0b7e-45d6-9534-03761cca51a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1416,10 +1359,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:31:20 GMT" + "Wed, 04 Mar 2020 19:38:22 GMT" ], "Content-Length": [ - "1543" + "742" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1428,17 +1371,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94%3B132271661370000000?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uRGF0YWJhc2VzL3Rlc3QvbG9uZ1Rlcm1SZXRlbnRpb25NYW5hZ2VkSW5zdGFuY2VCYWNrdXBzLzQ5MjNhMGMxLWJmYzQtNDRlMy1iZjgzLTNlYTNmYzc0MWQ5NCUzQjEzMjI3MTY2MTM3MDAwMDAwMD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47%3B132277182820000000?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uRGF0YWJhc2VzL3BzLXRlc3QtMi9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZUJhY2t1cHMvYTJhMGJkNGEtNWRhYi00OTA3LWEwZjEtNWJjZmU5MDUzZTQ3JTNCMTMyMjc3MTgyODIwMDAwMDAwP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d9252af4-0d66-45b0-81f0-2bf1e1c152c2" + "6281b72d-ad65-4bb4-9f93-101ad57a4c3a" ], "Accept-Language": [ "en-US" @@ -1447,7 +1390,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -1457,20 +1400,29 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackupOperationResults/1d23ecc2-3d38-419e-b02d-b859083ba00d?api-version=2018-06-01-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackupAzureAsyncOperation/1d23ecc2-3d38-419e-b02d-b859083ba00d?api-version=2018-06-01-preview" + ], "x-ms-request-id": [ - "9880bf6c-4417-42f5-bb94-b121619e4054" + "1d23ecc2-3d38-419e-b02d-b859083ba00d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "bdf9d8f3-751e-4990-a377-21fa1f5a7f74" + "63512286-aeb0-4b28-930a-e4c304c699c2" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013121Z:bdf9d8f3-751e-4990-a377-21fa1f5a7f74" + "NORTHEUROPE:20200304T193822Z:63512286-aeb0-4b28-930a-e4c304c699c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1479,10 +1431,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:31:20 GMT" + "Wed, 04 Mar 2020 19:38:22 GMT" ], "Content-Length": [ - "740" + "70" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1491,26 +1443,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"operation\": \"DeleteLTRBackup\",\r\n \"startTime\": \"2020-03-04T19:38:22.743Z\"\r\n}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94%3B132271661370000000?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlcy9zZWFnZW9kci1nZW41LWdwL2xvbmdUZXJtUmV0ZW50aW9uRGF0YWJhc2VzL3Rlc3QvbG9uZ1Rlcm1SZXRlbnRpb25NYW5hZ2VkSW5zdGFuY2VCYWNrdXBzLzQ5MjNhMGMxLWJmYzQtNDRlMy1iZjgzLTNlYTNmYzc0MWQ5NCUzQjEzMjI3MTY2MTM3MDAwMDAwMD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackupAzureAsyncOperation/1d23ecc2-3d38-419e-b02d-b859083ba00d?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3VwQXp1cmVBc3luY09wZXJhdGlvbi8xZDIzZWNjMi0zZDM4LTQxOWUtYjAyZC1iODU5MDgzYmEwMGQ/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "bd4a4cf2-b8fe-423b-b7c3-968bd26db847" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -1520,29 +1466,23 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackupOperationResults/792c539b-fcbf-4f56-80d6-bfe1fb487098?api-version=2018-06-01-preview" - ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackupAzureAsyncOperation/792c539b-fcbf-4f56-80d6-bfe1fb487098?api-version=2018-06-01-preview" - ], "x-ms-request-id": [ - "792c539b-fcbf-4f56-80d6-bfe1fb487098" + "c4d9dc89-5747-4aab-b230-a00ff8c502b7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" ], "x-ms-correlation-request-id": [ - "2fb15d04-293a-4d88-8154-6f2ecb2d2d10" + "bb407d5d-f934-45dd-bbad-46135d40e5de" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013122Z:2fb15d04-293a-4d88-8154-6f2ecb2d2d10" + "NORTHEUROPE:20200304T193838Z:bb407d5d-f934-45dd-bbad-46135d40e5de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1551,10 +1491,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:31:22 GMT" + "Wed, 04 Mar 2020 19:38:38 GMT" ], "Content-Length": [ - "69" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1563,12 +1503,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"DeleteLTRBackup\",\r\n \"startTime\": \"2020-03-04T01:31:22.18Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"name\": \"1d23ecc2-3d38-419e-b02d-b859083ba00d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-04T19:38:22.743Z\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackupAzureAsyncOperation/792c539b-fcbf-4f56-80d6-bfe1fb487098?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3VwQXp1cmVBc3luY09wZXJhdGlvbi83OTJjNTM5Yi1mY2JmLTRmNTYtODBkNi1iZmUxZmI0ODcwOTg/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackupOperationResults/1d23ecc2-3d38-419e-b02d-b859083ba00d?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3VwT3BlcmF0aW9uUmVzdWx0cy8xZDIzZWNjMi0zZDM4LTQxOWUtYjAyZC1iODU5MDgzYmEwMGQ/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1576,7 +1516,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -1586,23 +1526,20 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-request-id": [ - "83370f78-5095-4170-836c-93c4056b3802" + "e6a4a52c-9289-4803-b2c7-0fc92469c85c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14978" ], "x-ms-correlation-request-id": [ - "eb70887a-256a-40e4-a23e-d3b2b0519958" + "d936fbb5-7700-4e90-b4da-4853a4b0df3f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013137Z:eb70887a-256a-40e4-a23e-d3b2b0519958" + "NORTHEUROPE:20200304T193839Z:d936fbb5-7700-4e90-b4da-4853a4b0df3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1611,32 +1548,35 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:31:37 GMT" - ], - "Content-Length": [ - "106" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Wed, 04 Mar 2020 19:38:39 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"name\": \"792c539b-fcbf-4f56-80d6-bfe1fb487098\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-04T01:31:22.18Z\"\r\n}", + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackupOperationResults/792c539b-fcbf-4f56-80d6-bfe1fb487098?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3VwT3BlcmF0aW9uUmVzdWx0cy83OTJjNTM5Yi1mY2JmLTRmNTYtODBkNi1iZmUxZmI0ODcwOTg/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-2?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c3abf6ea-40f0-4906-ba2f-04dba2b55dd4" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -1647,19 +1587,19 @@ "no-cache" ], "x-ms-request-id": [ - "554ef697-7965-4c66-98dd-64e41fa46870" + "41a1c1b1-d733-471f-a7c8-6fda0759f6d3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14977" ], "x-ms-correlation-request-id": [ - "02521372-88e8-4973-8831-bf5bfa010dbb" + "e2f73603-3ba9-4810-870a-347d0a8f91af" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013138Z:02521372-88e8-4973-8831-bf5bfa010dbb" + "NORTHEUROPE:20200304T193839Z:e2f73603-3ba9-4810-870a-347d0a8f91af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1668,26 +1608,29 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:31:37 GMT" + "Wed, 04 Mar 2020 19:38:39 GMT" + ], + "Content-Length": [ + "471" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-03T14:09:56.2Z\",\r\n \"earliestRestorePoint\": \"2020-03-03T14:11:24.56Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-2\",\r\n \"name\": \"ps-test-2\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3Rlc3Q/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy9wcy10ZXN0LTIvbG9uZ1Rlcm1SZXRlbnRpb25NYW5hZ2VkSW5zdGFuY2VCYWNrdXBzP29ubHlMYXRlc3RQZXJEYXRhYmFzZT1mYWxzZSZhcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "96a58421-0e07-45f4-b1a2-79c79043c28d" + "4bea662e-fe39-4e80-8ea5-2e33e6be3467" ], "Accept-Language": [ "en-US" @@ -1696,7 +1639,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -1707,19 +1650,19 @@ "no-cache" ], "x-ms-request-id": [ - "787717f6-2cfc-4969-b95e-e85ca22aed2a" + "272f540b-ebc9-41d6-a713-57c713aae3d1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14976" ], "x-ms-correlation-request-id": [ - "3b346bc8-3ac1-42d2-bbc3-d3b3ead8c0cc" + "337c8ac2-909d-4ff4-a01b-aceb8599c178" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013138Z:3b346bc8-3ac1-42d2-bbc3-d3b3ead8c0cc" + "NORTHEUROPE:20200304T193839Z:337c8ac2-909d-4ff4-a01b-aceb8599c178" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1728,10 +1671,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:31:37 GMT" + "Wed, 04 Mar 2020 19:38:39 GMT" ], "Content-Length": [ - "463" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1740,17 +1683,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-02-26T04:46:02.857Z\",\r\n \"earliestRestorePoint\": \"2020-02-26T04:49:01.92Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test\",\r\n \"name\": \"test\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy90ZXN0L2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcz9vbmx5TGF0ZXN0UGVyRGF0YWJhc2U9ZmFsc2UmYXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-restore-2?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS0yP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2ee08848-54d5-4c9a-9140-5f772a54946c" + "1b724fb3-2302-4a5b-8ceb-138cfcc76ce7" ], "Accept-Language": [ "en-US" @@ -1759,7 +1702,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -1769,20 +1712,29 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/648619f7-20a1-4159-a609-368ac888ea50?api-version=2019-06-01-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/648619f7-20a1-4159-a609-368ac888ea50?api-version=2019-06-01-preview" + ], "x-ms-request-id": [ - "1314e145-8843-4bbf-809e-d2c7d9cc9b61" + "648619f7-20a1-4159-a609-368ac888ea50" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" ], "x-ms-correlation-request-id": [ - "9da46494-50d2-43ce-86c7-e4fbac437c6b" + "c8f9bfee-f0bd-4eef-80ab-763f784afd61" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013138Z:9da46494-50d2-43ce-86c7-e4fbac437c6b" + "NORTHEUROPE:20200304T193840Z:c8f9bfee-f0bd-4eef-80ab-763f784afd61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1791,10 +1743,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:31:38 GMT" + "Wed, 04 Mar 2020 19:38:40 GMT" ], "Content-Length": [ - "802" + "74" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1803,26 +1755,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"operation\": \"DropManagedDatabase\",\r\n \"startTime\": \"2020-03-04T19:38:40.543Z\"\r\n}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-restore-x?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS14P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/648619f7-20a1-4159-a609-368ac888ea50?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNjQ4NjE5ZjctMjBhMS00MTU5LWE2MDktMzY4YWM4ODhlYTUwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "267c3fdc-4fe2-4621-afb1-1113153d84a1" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -1832,29 +1778,23 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/b6702ba1-5d4e-4664-b163-cce3129ce5a8?api-version=2019-06-01-preview" - ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/b6702ba1-5d4e-4664-b163-cce3129ce5a8?api-version=2019-06-01-preview" - ], "x-ms-request-id": [ - "b6702ba1-5d4e-4664-b163-cce3129ce5a8" + "8ee37258-b3f0-43a6-ad0e-4d2bb0dd536e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" - ], "x-ms-correlation-request-id": [ - "fb7a6643-c3c0-4629-8a75-127fbaf13334" + "748155b9-8b64-4a42-af27-bc2701e12193" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013139Z:fb7a6643-c3c0-4629-8a75-127fbaf13334" + "NORTHEUROPE:20200304T193856Z:748155b9-8b64-4a42-af27-bc2701e12193" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1863,10 +1803,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:31:39 GMT" + "Wed, 04 Mar 2020 19:38:55 GMT" ], "Content-Length": [ - "74" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1875,12 +1815,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"DropManagedDatabase\",\r\n \"startTime\": \"2020-03-04T01:31:39.377Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"name\": \"648619f7-20a1-4159-a609-368ac888ea50\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T19:38:40.543Z\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/b6702ba1-5d4e-4664-b163-cce3129ce5a8?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYjY3MDJiYTEtNWQ0ZS00NjY0LWIxNjMtY2NlMzEyOWNlNWE4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/648619f7-20a1-4159-a609-368ac888ea50?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNjQ4NjE5ZjctMjBhMS00MTU5LWE2MDktMzY4YWM4ODhlYTUwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1888,7 +1828,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -1902,19 +1842,19 @@ "15" ], "x-ms-request-id": [ - "349b9a29-c7bb-43e2-9f19-3b9702512ae4" + "cf9db10f-fed9-48ed-8008-4ca6148c605b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14973" ], "x-ms-correlation-request-id": [ - "6759895d-6272-4ef6-8477-f77cb0460b3d" + "bfa10d35-e59d-4af7-a8a2-4be6ce6ae2a6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013154Z:6759895d-6272-4ef6-8477-f77cb0460b3d" + "NORTHEUROPE:20200304T193912Z:bfa10d35-e59d-4af7-a8a2-4be6ce6ae2a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1923,7 +1863,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:31:54 GMT" + "Wed, 04 Mar 2020 19:39:11 GMT" ], "Content-Length": [ "107" @@ -1935,12 +1875,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"b6702ba1-5d4e-4664-b163-cce3129ce5a8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-04T01:31:39.377Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"648619f7-20a1-4159-a609-368ac888ea50\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-04T19:38:40.543Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/b6702ba1-5d4e-4664-b163-cce3129ce5a8?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZU9wZXJhdGlvblJlc3VsdHMvYjY3MDJiYTEtNWQ0ZS00NjY0LWIxNjMtY2NlMzEyOWNlNWE4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/648619f7-20a1-4159-a609-368ac888ea50?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZU9wZXJhdGlvblJlc3VsdHMvNjQ4NjE5ZjctMjBhMS00MTU5LWE2MDktMzY4YWM4ODhlYTUwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1948,7 +1888,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -1959,19 +1899,19 @@ "no-cache" ], "x-ms-request-id": [ - "8493c427-4efd-4a68-9e0d-f16b7300b94d" + "4d717a15-bfa6-4803-8928-c09c9c16650b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14972" ], "x-ms-correlation-request-id": [ - "80d34c98-e8f6-4f1f-b4cc-40bf0bcc2090" + "b133f4bf-bef7-4f47-9bc6-fbf8c3c78d93" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013155Z:80d34c98-e8f6-4f1f-b4cc-40bf0bcc2090" + "NORTHEUROPE:20200304T193912Z:b133f4bf-bef7-4f47-9bc6-fbf8c3c78d93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1980,7 +1920,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:31:54 GMT" + "Wed, 04 Mar 2020 19:39:11 GMT" ], "Expires": [ "-1" @@ -1992,6 +1932,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "709b4d09-b251-4ae8-8998-e1954ee45cf9" + "SubscriptionId": "8cfb8b62-bcd6-4713-89ad-18097f75cc5b" } } \ No newline at end of file diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionResourceGroupBasedBackup.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionResourceGroupBasedBackup.json index 9ec84f8475f7..7b07154d2a82 100644 --- a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionResourceGroupBasedBackup.json +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedDatabaseBackupTests/TestManagedInstanceLongTermRetentionResourceGroupBasedBackup.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZUJhY2t1cHM/b25seUxhdGVzdFBlckRhdGFiYXNlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a9b863f-bb88-43f4-83f5-1bdb3a53e71a" + "cee96e63-05dd-4c99-9f23-08f55729f37c" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -27,7 +27,7 @@ "no-cache" ], "x-ms-request-id": [ - "ebde37ae-40e3-49b0-bf74-e089e5509579" + "383d731e-ad86-4c38-bb66-c580ef03cb3b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -36,10 +36,10 @@ "14999" ], "x-ms-correlation-request-id": [ - "b23f3a14-d49d-4e28-95a0-fe15a288bb1f" + "cff22b3c-1b76-403d-9437-1ef70f735287" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013206Z:b23f3a14-d49d-4e28-95a0-fe15a288bb1f" + "NORTHEUROPE:20200304T193925Z:cff22b3c-1b76-403d-9437-1ef70f735287" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,10 +48,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:32:06 GMT" + "Wed, 04 Mar 2020 19:39:24 GMT" ], "Content-Length": [ - "11378" + "12900" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60,17 +60,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-455\",\r\n \"backupTime\": \"2020-02-27T20:49:41Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:23:48.8462413Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-455/longTermRetentionManagedInstanceBackups/af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"name\": \"af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-ltr-policy-test\",\r\n \"backupTime\": \"2020-03-04T01:25:46Z\",\r\n \"backupExpirationTime\": \"2020-03-11T01:25:46Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-ltr-policy-test/longTermRetentionManagedInstanceBackups/f22f0729-4b77-45bd-a8e2-623406aee7ad;132277587460000000\",\r\n \"name\": \"f22f0729-4b77-45bd-a8e2-623406aee7ad;132277587460000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZUJhY2t1cHM/b25seUxhdGVzdFBlckRhdGFiYXNlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f1fe093a-366d-4d5c-b9ae-e98ff77badb6" + "ee76853e-3301-4e45-b865-28c426ca2da7" ], "Accept-Language": [ "en-US" @@ -79,7 +79,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -90,7 +90,7 @@ "no-cache" ], "x-ms-request-id": [ - "6bfc9408-5d4d-417a-9171-35ed64477934" + "f1a1f3f3-62bd-4449-afb5-71ac9212f2ca" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -99,10 +99,10 @@ "14987" ], "x-ms-correlation-request-id": [ - "5e783fa1-587e-4b1d-90ce-4977ade390ce" + "542f7c67-073e-4076-b25f-9f5b84646221" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013211Z:5e783fa1-587e-4b1d-90ce-4977ade390ce" + "NORTHEUROPE:20200304T193929Z:542f7c67-073e-4076-b25f-9f5b84646221" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,10 +111,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:32:11 GMT" + "Wed, 04 Mar 2020 19:39:28 GMT" ], "Content-Length": [ - "11378" + "12900" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,17 +123,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-455\",\r\n \"backupTime\": \"2020-02-27T20:49:41Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:23:48.8462413Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-455/longTermRetentionManagedInstanceBackups/af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"name\": \"af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-ltr-policy-test\",\r\n \"backupTime\": \"2020-03-04T01:25:46Z\",\r\n \"backupExpirationTime\": \"2020-03-11T01:25:46Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-ltr-policy-test/longTermRetentionManagedInstanceBackups/f22f0729-4b77-45bd-a8e2-623406aee7ad;132277587460000000\",\r\n \"name\": \"f22f0729-4b77-45bd-a8e2-623406aee7ad;132277587460000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZUJhY2t1cHM/b25seUxhdGVzdFBlckRhdGFiYXNlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c9bd09a4-f081-4110-9209-bf04b009cc8d" + "54ee8f2b-f90c-4253-9297-0a35bc584d15" ], "Accept-Language": [ "en-US" @@ -142,7 +142,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -153,7 +153,7 @@ "no-cache" ], "x-ms-request-id": [ - "0c9635a3-7086-4377-a706-3f4dbe202391" + "6c3bf7d3-a2de-4eea-870c-5eae697ad83f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -162,10 +162,10 @@ "14998" ], "x-ms-correlation-request-id": [ - "50bcb261-1c83-45bc-ac98-54f447b92bfd" + "5e7c933e-e056-43e8-89a5-f2dcb79ba8ab" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013207Z:50bcb261-1c83-45bc-ac98-54f447b92bfd" + "NORTHEUROPE:20200304T193925Z:5e7c933e-e056-43e8-89a5-f2dcb79ba8ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,10 +174,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:32:06 GMT" + "Wed, 04 Mar 2020 19:39:25 GMT" ], "Content-Length": [ - "11378" + "12900" ], "Content-Type": [ "application/json; charset=utf-8" @@ -186,17 +186,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-455\",\r\n \"backupTime\": \"2020-02-27T20:49:41Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:23:48.8462413Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-455/longTermRetentionManagedInstanceBackups/af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"name\": \"af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-ltr-policy-test\",\r\n \"backupTime\": \"2020-03-04T01:25:46Z\",\r\n \"backupExpirationTime\": \"2020-03-11T01:25:46Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-ltr-policy-test/longTermRetentionManagedInstanceBackups/f22f0729-4b77-45bd-a8e2-623406aee7ad;132277587460000000\",\r\n \"name\": \"f22f0729-4b77-45bd-a8e2-623406aee7ad;132277587460000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy90ZXN0L2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcz9vbmx5TGF0ZXN0UGVyRGF0YWJhc2U9ZmFsc2UmYXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy9wcy10ZXN0LTMvbG9uZ1Rlcm1SZXRlbnRpb25NYW5hZ2VkSW5zdGFuY2VCYWNrdXBzP29ubHlMYXRlc3RQZXJEYXRhYmFzZT1mYWxzZSZhcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bbbf81ca-ac68-4c28-a488-50e7e87f8d8e" + "ff27a4b3-7fa3-45a4-9429-918a09736c11" ], "Accept-Language": [ "en-US" @@ -205,7 +205,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -216,7 +216,7 @@ "no-cache" ], "x-ms-request-id": [ - "b1fa6c4d-6916-4d51-9980-a17ea51b4422" + "0876cd22-3972-4736-a7e3-0266e09801f7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -225,10 +225,10 @@ "14997" ], "x-ms-correlation-request-id": [ - "545cf2ab-ce76-420d-9d76-cadb986476f4" + "e18418aa-e01f-4fd7-b485-990fa39625fe" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013207Z:545cf2ab-ce76-420d-9d76-cadb986476f4" + "NORTHEUROPE:20200304T193926Z:e18418aa-e01f-4fd7-b485-990fa39625fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,10 +237,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:32:06 GMT" + "Wed, 04 Mar 2020 19:39:25 GMT" ], "Content-Length": [ - "802" + "754" ], "Content-Type": [ "application/json; charset=utf-8" @@ -249,17 +249,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy90ZXN0L2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcz9vbmx5TGF0ZXN0UGVyRGF0YWJhc2U9ZmFsc2UmYXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy9wcy10ZXN0LTMvbG9uZ1Rlcm1SZXRlbnRpb25NYW5hZ2VkSW5zdGFuY2VCYWNrdXBzP29ubHlMYXRlc3RQZXJEYXRhYmFzZT1mYWxzZSZhcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7044a798-16fe-48ad-b0b4-44a414c295e2" + "acbbec82-5487-4a16-8520-d90fc8af2200" ], "Accept-Language": [ "en-US" @@ -268,7 +268,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -279,7 +279,7 @@ "no-cache" ], "x-ms-request-id": [ - "2cb4c121-d7b6-4ada-a59d-b872a2b0ca13" + "f179c285-fcf6-4f14-9dec-facf126087b0" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -288,10 +288,10 @@ "14994" ], "x-ms-correlation-request-id": [ - "f02683f3-ef05-4b90-9f46-8b0fa317a11e" + "3e24c610-b2a6-4161-9ad2-9cfb08473ad4" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013208Z:f02683f3-ef05-4b90-9f46-8b0fa317a11e" + "NORTHEUROPE:20200304T193927Z:3e24c610-b2a6-4161-9ad2-9cfb08473ad4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -300,10 +300,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:32:08 GMT" + "Wed, 04 Mar 2020 19:39:26 GMT" ], "Content-Length": [ - "802" + "754" ], "Content-Type": [ "application/json; charset=utf-8" @@ -312,17 +312,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b%3B132268250550000000?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy90ZXN0L2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcy81ZTNmNWY2Yy1kZjZmLTRjODItYTQ0Ny03NDBlZTcxNTNiMmIlM0IxMzIyNjgyNTA1NTAwMDAwMDA/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911%3B132277182840000000?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy9wcy10ZXN0LTMvbG9uZ1Rlcm1SZXRlbnRpb25NYW5hZ2VkSW5zdGFuY2VCYWNrdXBzL2YxYTQ2MjViLTVmZmMtNDBmNy1hZDE2LWI0ZDI0YmM3ZTkxMSUzQjEzMjI3NzE4Mjg0MDAwMDAwMD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea0fc3bf-ccda-431b-9047-437196358731" + "0d068382-939d-42cd-9f36-efd8b60af6da" ], "Accept-Language": [ "en-US" @@ -331,7 +331,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -342,7 +342,7 @@ "no-cache" ], "x-ms-request-id": [ - "efbeec87-a18e-4004-abd6-e5494cd9aa6b" + "2ed76380-404b-490e-9119-c678fcfcf05e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -351,10 +351,10 @@ "14996" ], "x-ms-correlation-request-id": [ - "d7437a5a-c39f-413e-b2e3-390b1d4cfd9b" + "64c03578-d7a5-4400-b84d-7901cecd70b5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013208Z:d7437a5a-c39f-413e-b2e3-390b1d4cfd9b" + "NORTHEUROPE:20200304T193926Z:64c03578-d7a5-4400-b84d-7901cecd70b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -363,10 +363,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:32:08 GMT" + "Wed, 04 Mar 2020 19:39:25 GMT" ], "Content-Length": [ - "790" + "742" ], "Content-Type": [ "application/json; charset=utf-8" @@ -375,17 +375,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b%3B132268250550000000?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy90ZXN0L2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcy81ZTNmNWY2Yy1kZjZmLTRjODItYTQ0Ny03NDBlZTcxNTNiMmIlM0IxMzIyNjgyNTA1NTAwMDAwMDA/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911%3B132277182840000000?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy9wcy10ZXN0LTMvbG9uZ1Rlcm1SZXRlbnRpb25NYW5hZ2VkSW5zdGFuY2VCYWNrdXBzL2YxYTQ2MjViLTVmZmMtNDBmNy1hZDE2LWI0ZDI0YmM3ZTkxMSUzQjEzMjI3NzE4Mjg0MDAwMDAwMD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "963d5232-ad3b-48bb-b1ee-4af81ea14819" + "abdb7cc8-6294-4ae5-ba4c-591975665306" ], "Accept-Language": [ "en-US" @@ -394,7 +394,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -405,7 +405,7 @@ "no-cache" ], "x-ms-request-id": [ - "f7ff43aa-39c7-4846-a587-8a0f9601b6d1" + "cfc87e7a-aa10-4a31-97a6-0982b7ffc19f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -414,10 +414,10 @@ "14992" ], "x-ms-correlation-request-id": [ - "2490841b-5ab3-4241-9c4c-d204ed254eb7" + "27cd7a82-c732-493e-b766-239e0ce65e38" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013209Z:2490841b-5ab3-4241-9c4c-d204ed254eb7" + "NORTHEUROPE:20200304T193927Z:27cd7a82-c732-493e-b766-239e0ce65e38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -426,10 +426,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:32:09 GMT" + "Wed, 04 Mar 2020 19:39:27 GMT" ], "Content-Length": [ - "790" + "742" ], "Content-Type": [ "application/json; charset=utf-8" @@ -438,17 +438,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3Rlc3Q/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-3?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6f4d9896-f995-40f5-bcab-6822cd2da90e" + "e040e38a-c180-45ce-bf2c-ffed882de461" ], "Accept-Language": [ "en-US" @@ -457,7 +457,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -468,7 +468,7 @@ "no-cache" ], "x-ms-request-id": [ - "7d0da29c-deb9-4d3b-a4f4-70c007790193" + "4627b8bf-e1f0-451c-b37e-ad55d593b427" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -477,10 +477,10 @@ "14995" ], "x-ms-correlation-request-id": [ - "6f56f312-4f70-4a72-a8be-17667f1d48dd" + "d98d5bf2-5026-44a7-8cfd-5b60f92efd3e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013208Z:6f56f312-4f70-4a72-a8be-17667f1d48dd" + "NORTHEUROPE:20200304T193926Z:d98d5bf2-5026-44a7-8cfd-5b60f92efd3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -489,10 +489,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:32:08 GMT" + "Wed, 04 Mar 2020 19:39:26 GMT" ], "Content-Length": [ - "463" + "473" ], "Content-Type": [ "application/json; charset=utf-8" @@ -501,17 +501,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-02-26T04:46:02.857Z\",\r\n \"earliestRestorePoint\": \"2020-02-26T04:49:01.92Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test\",\r\n \"name\": \"test\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-03T14:10:40.88Z\",\r\n \"earliestRestorePoint\": \"2020-03-03T14:11:25.687Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-3\",\r\n \"name\": \"ps-test-3\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3Rlc3Q/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-3?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af4ce65f-8630-43ba-97ad-1fb6e5a9b27e" + "7b66fae1-653b-42bf-89dc-e6bcf0cd916f" ], "Accept-Language": [ "en-US" @@ -520,7 +520,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -531,7 +531,7 @@ "no-cache" ], "x-ms-request-id": [ - "b98643f1-cc47-4c0f-bc2a-991b69baf067" + "1f493e66-e797-41e0-a151-9b4d6ec25a1f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -540,10 +540,10 @@ "14993" ], "x-ms-correlation-request-id": [ - "228753ab-51cb-4458-b005-37626c953714" + "5f42af5f-3ba0-46ad-9746-a099355e91d6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013209Z:228753ab-51cb-4458-b005-37626c953714" + "NORTHEUROPE:20200304T193927Z:5f42af5f-3ba0-46ad-9746-a099355e91d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -552,10 +552,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:32:09 GMT" + "Wed, 04 Mar 2020 19:39:26 GMT" ], "Content-Length": [ - "463" + "473" ], "Content-Type": [ "application/json; charset=utf-8" @@ -564,17 +564,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-02-26T04:46:02.857Z\",\r\n \"earliestRestorePoint\": \"2020-02-26T04:49:01.92Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test\",\r\n \"name\": \"test\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-03T14:10:40.88Z\",\r\n \"earliestRestorePoint\": \"2020-03-03T14:11:25.687Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-3\",\r\n \"name\": \"ps-test-3\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3Rlc3Q/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-3?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "558d645d-60e8-4c23-a7fd-4d9cb3e47dd4" + "2cf1e4fe-1e5c-4aa2-834b-bc03d5fa27fc" ], "Accept-Language": [ "en-US" @@ -583,7 +583,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -594,7 +594,7 @@ "no-cache" ], "x-ms-request-id": [ - "27ed9d30-aeff-4d2e-9723-3a597c67bde3" + "e462f088-3008-4de8-ba0f-af9512d7fa7c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -603,10 +603,10 @@ "14989" ], "x-ms-correlation-request-id": [ - "e259c26c-d9fa-4494-8fc4-a3b90f93698a" + "df21c32a-6027-4f61-b5c2-f2cdec516144" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013210Z:e259c26c-d9fa-4494-8fc4-a3b90f93698a" + "NORTHEUROPE:20200304T193928Z:df21c32a-6027-4f61-b5c2-f2cdec516144" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -615,10 +615,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:32:10 GMT" + "Wed, 04 Mar 2020 19:39:28 GMT" ], "Content-Length": [ - "463" + "473" ], "Content-Type": [ "application/json; charset=utf-8" @@ -627,17 +627,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-02-26T04:46:02.857Z\",\r\n \"earliestRestorePoint\": \"2020-02-26T04:49:01.92Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/test\",\r\n \"name\": \"test\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-03T14:10:40.88Z\",\r\n \"earliestRestorePoint\": \"2020-03-03T14:11:25.687Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-3\",\r\n \"name\": \"ps-test-3\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=true&api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy90ZXN0L2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcz9vbmx5TGF0ZXN0UGVyRGF0YWJhc2U9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=true&api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy9wcy10ZXN0LTMvbG9uZ1Rlcm1SZXRlbnRpb25NYW5hZ2VkSW5zdGFuY2VCYWNrdXBzP29ubHlMYXRlc3RQZXJEYXRhYmFzZT10cnVlJmFwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8bc2e185-99dc-4005-8897-64cc5dd9bd2a" + "42a50abf-9322-42f1-b717-99376d208c1f" ], "Accept-Language": [ "en-US" @@ -646,7 +646,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -657,7 +657,7 @@ "no-cache" ], "x-ms-request-id": [ - "a3a15e6b-cfd7-4bc8-a322-d8553e433180" + "35183b95-29dd-42e3-a285-3a667916d737" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -666,10 +666,10 @@ "14991" ], "x-ms-correlation-request-id": [ - "a84a5950-dae6-4de4-84e7-d04f7a6c24b0" + "d889e99f-fb56-4346-bac2-a73556e8ff55" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013209Z:a84a5950-dae6-4de4-84e7-d04f7a6c24b0" + "NORTHEUROPE:20200304T193928Z:d889e99f-fb56-4346-bac2-a73556e8ff55" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -678,10 +678,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:32:09 GMT" + "Wed, 04 Mar 2020 19:39:27 GMT" ], "Content-Length": [ - "802" + "754" ], "Content-Type": [ "application/json; charset=utf-8" @@ -690,17 +690,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=true&api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy90ZXN0L2xvbmdUZXJtUmV0ZW50aW9uTWFuYWdlZEluc3RhbmNlQmFja3Vwcz9vbmx5TGF0ZXN0UGVyRGF0YWJhc2U9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=true&api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbkRhdGFiYXNlcy9wcy10ZXN0LTMvbG9uZ1Rlcm1SZXRlbnRpb25NYW5hZ2VkSW5zdGFuY2VCYWNrdXBzP29ubHlMYXRlc3RQZXJEYXRhYmFzZT10cnVlJmFwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "88e2dea8-5374-4167-ace1-b8cdb498d836" + "39251949-74c5-4380-ba71-ff8f82c9b952" ], "Accept-Language": [ "en-US" @@ -709,7 +709,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -720,7 +720,7 @@ "no-cache" ], "x-ms-request-id": [ - "d0434cf5-b4f2-4158-8720-ff0c1c103209" + "daeeb4ce-ca0d-4c55-9a37-f13626bb4b29" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -729,10 +729,10 @@ "14988" ], "x-ms-correlation-request-id": [ - "3d2c04af-8289-491d-a48c-8e25be0b3580" + "b013d6b3-b37a-4905-ac7f-602219de1b34" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013210Z:3d2c04af-8289-491d-a48c-8e25be0b3580" + "NORTHEUROPE:20200304T193929Z:b013d6b3-b37a-4905-ac7f-602219de1b34" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -741,10 +741,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:32:10 GMT" + "Wed, 04 Mar 2020 19:39:28 GMT" ], "Content-Length": [ - "802" + "754" ], "Content-Type": [ "application/json; charset=utf-8" @@ -753,17 +753,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&databaseState=All&api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionManagedInstanceBackups?onlyLatestPerDatabase=false&databaseState=All&api-version=2018-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZXMvc2VhZ2VvZHItZ2VuNS1ncC9sb25nVGVybVJldGVudGlvbk1hbmFnZWRJbnN0YW5jZUJhY2t1cHM/b25seUxhdGVzdFBlckRhdGFiYXNlPWZhbHNlJmRhdGFiYXNlU3RhdGU9QWxsJmFwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "801db448-83a5-4ab7-9905-eb5cb92a81ad" + "aa4f28bd-bd37-4d73-9fbd-cb072d839c78" ], "Accept-Language": [ "en-US" @@ -772,7 +772,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -783,7 +783,7 @@ "no-cache" ], "x-ms-request-id": [ - "c9baa187-9688-4455-9ea2-6d1c1dd2dd19" + "e8be15cc-72c1-4f02-93c5-ecc849e07bf6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -792,10 +792,10 @@ "14990" ], "x-ms-correlation-request-id": [ - "fd72d1d5-19fb-4213-a910-afe6768fb085" + "274e5f08-801c-4a31-96eb-faa0adfa4209" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013210Z:fd72d1d5-19fb-4213-a910-afe6768fb085" + "NORTHEUROPE:20200304T193928Z:274e5f08-801c-4a31-96eb-faa0adfa4209" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -804,10 +804,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:32:10 GMT" + "Wed, 04 Mar 2020 19:39:27 GMT" ], "Content-Length": [ - "11378" + "12900" ], "Content-Type": [ "application/json; charset=utf-8" @@ -816,17 +816,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-2\",\r\n \"backupTime\": \"2020-03-03T14:11:22Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:22Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-2/longTermRetentionManagedInstanceBackups/a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"name\": \"a2a0bd4a-5dab-4907-a0f1-5bcfe9053e47;132277182820000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"ps-test-mi\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-e18652d0-99a7-4bc7-9eb3-733ae3dae337\",\r\n \"backupTime\": \"2020-03-03T07:01:59Z\",\r\n \"backupExpirationTime\": \"2020-03-10T07:01:59Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"name\": \"378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-02-25T00:33:48Z\",\r\n \"backupExpirationTime\": \"2020-03-10T00:33:48Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132270644280000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"target1\",\r\n \"backupTime\": \"2020-03-02T20:01:47Z\",\r\n \"backupExpirationTime\": \"2020-03-16T20:01:47Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/target1/longTermRetentionManagedInstanceBackups/ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"name\": \"ae1ea149-d5ff-4554-9333-33debe0b92ff;132276529070000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"backupTime\": \"2020-02-26T04:48:57Z\",\r\n \"backupExpirationTime\": \"2020-03-10T12:37:13.9382803Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"name\": \"4923a0c1-bfc4-44e3-bf83-3ea3fc741d94;132271661370000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-5\",\r\n \"backupTime\": \"2020-03-03T14:16:38Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:38Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-5/longTermRetentionManagedInstanceBackups/151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"name\": \"151bab0a-8376-4a30-9731-45813da9a614;132277185980000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-455\",\r\n \"backupTime\": \"2020-02-27T20:49:41Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:23:48.8462413Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-455/longTermRetentionManagedInstanceBackups/af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"name\": \"af08281c-d084-4ba6-accd-506843f03e87;132273101810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-1\",\r\n \"backupTime\": \"2020-03-03T14:06:27Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:06:27Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-1/longTermRetentionManagedInstanceBackups/0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"name\": \"0cf6fbbd-0040-4a2b-b95d-591eba358931;132277179870000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-ltr-policy-test\",\r\n \"backupTime\": \"2020-03-04T01:25:46Z\",\r\n \"backupExpirationTime\": \"2020-03-11T01:25:46Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-ltr-policy-test/longTermRetentionManagedInstanceBackups/f22f0729-4b77-45bd-a8e2-623406aee7ad;132277587460000000\",\r\n \"name\": \"f22f0729-4b77-45bd-a8e2-623406aee7ad;132277587460000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-4\",\r\n \"backupTime\": \"2020-03-03T14:16:35Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:16:35Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-4/longTermRetentionManagedInstanceBackups/3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"name\": \"3322749b-c621-4bc2-b97e-62a53318fe0a;132277185950000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test\",\r\n \"databaseDeletionTime\": \"2020-02-24T14:56:44.717Z\",\r\n \"backupTime\": \"2020-02-22T06:04:15Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:10:45.6385112Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test/longTermRetentionManagedInstanceBackups/5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"name\": \"5e3f5f6c-df6f-4c82-a447-740ee7153b2b;132268250550000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8305\",\r\n \"backupTime\": \"2020-02-27T23:09:39Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:59:29.7608268Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-8305/longTermRetentionManagedInstanceBackups/5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"name\": \"5083d673-239d-433b-ab32-8d56bd69e9ae;132273185790000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test-3\",\r\n \"backupTime\": \"2020-03-03T14:11:24Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:11:24Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test-3/longTermRetentionManagedInstanceBackups/f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"name\": \"f1a4625b-5ffc-40f7-ad16-b4d24bc7e911;132277182840000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-b083bf22-b64c-42ee-958f-a5ee0a512f75\",\r\n \"backupTime\": \"2020-03-03T13:51:21Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:51:21Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-b083bf22-b64c-42ee-958f-a5ee0a512f75/longTermRetentionManagedInstanceBackups/91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"name\": \"91512746-7623-4077-97df-bfc754317765;132277170810000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-8750\",\r\n \"backupTime\": \"2020-02-25T19:33:51Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:55:06.3032425Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-8750/longTermRetentionManagedInstanceBackups/869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"name\": \"869a4e40-bbe8-4703-82d8-d0be49021f66;132271328310000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"ps-test\",\r\n \"backupTime\": \"2020-03-03T14:01:29Z\",\r\n \"backupExpirationTime\": \"2020-03-10T14:01:29Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/ps-test/longTermRetentionManagedInstanceBackups/723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"name\": \"723e1806-41e3-4cc1-86c8-e561433f245d;132277176890000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"sqlcrudtest-5830\",\r\n \"backupTime\": \"2020-03-03T02:26:49Z\",\r\n \"backupExpirationTime\": \"2020-03-10T13:01:51.29337Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/sqlcrudtest-5830/longTermRetentionManagedInstanceBackups/733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"name\": \"733cf33d-027c-455e-a80e-edfc1b06b0ee;132276760090000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n },\r\n {\r\n \"properties\": {\r\n \"managedInstanceName\": \"seageodr-gen5-gp\",\r\n \"managedInstanceCreateTime\": \"2019-10-17T16:52:10.627Z\",\r\n \"databaseName\": \"test-j\",\r\n \"backupTime\": \"2020-03-03T06:56:52Z\",\r\n \"backupExpirationTime\": \"2020-03-10T06:56:52Z\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-j/longTermRetentionManagedInstanceBackups/d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"name\": \"d159f3d8-0ee6-40df-8e97-fb221a00f835;132276922120000000\",\r\n \"type\": \"Microsoft.Sql/locations/longTermRetentionManagedInstances/longTermRetentionDatabases/longTermRetentionManagedInstanceBackups\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi?api-version=2018-06-01-preview", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp?api-version=2018-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3A/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "60e0820c-57cb-4845-8fac-3c7d211127e4" + "537bd7e3-8119-4530-90f0-05b66e1cce87" ], "Accept-Language": [ "en-US" @@ -835,7 +835,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -846,7 +846,7 @@ "no-cache" ], "x-ms-request-id": [ - "389924f9-95d1-472a-90e1-3aff93209fc1" + "1b065cab-b4c0-47c2-a5cf-eba6245ae89b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -855,10 +855,10 @@ "14986" ], "x-ms-correlation-request-id": [ - "e9753e8d-2a78-4c0c-9f6f-14b804a9dad7" + "d35733d3-62b7-4427-bbfd-c44aa174b99a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013211Z:e9753e8d-2a78-4c0c-9f6f-14b804a9dad7" + "NORTHEUROPE:20200304T193930Z:d35733d3-62b7-4427-bbfd-c44aa174b99a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -867,7 +867,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:32:11 GMT" + "Wed, 04 Mar 2020 19:39:30 GMT" ], "Content-Length": [ "873" @@ -879,17 +879,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 8\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"ps-test-mi.lkgt1aeda54f909eb.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"cloudSA\",\r\n \"subnetId\": \"/subscriptions/741fd0f5-9cb8-442c-91c3-3ef4ca231c2a/resourceGroups/cloudlifter/providers/Microsoft.ClassicNetwork/virtualNetworks/cloudlifter-runners-stage-sea/subnets/Gen5GeoDR\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 8,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"lkgt1aeda54f909eb\",\r\n \"publicDataEndpointEnabled\": true,\r\n \"proxyOverride\": \"Proxy\",\r\n \"timezoneId\": \"UTC\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi\",\r\n \"name\": \"ps-test-mi\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 8\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"seageodr-gen5-gp.lkgt1aeda54f909eb.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"cloudSA\",\r\n \"subnetId\": \"/subscriptions/741fd0f5-9cb8-442c-91c3-3ef4ca231c2a/resourceGroups/cloudlifter/providers/Microsoft.ClassicNetwork/virtualNetworks/cloudlifter-runners-stage-sea/subnets/Gen5GeoDR\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 8,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"lkgt1aeda54f909eb\",\r\n \"publicDataEndpointEnabled\": true,\r\n \"proxyOverride\": \"Proxy\",\r\n \"timezoneId\": \"UTC\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp\",\r\n \"name\": \"seageodr-gen5-gp\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-restore-with-rg-x?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS13aXRoLXJnLXg/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-restore-with-rg-2?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS13aXRoLXJnLTI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"createMode\": \"RestoreLongTermRetentionBackup\",\r\n \"longTermRetentionBackupResourceId\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/ps-test-mi/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"createMode\": \"RestoreLongTermRetentionBackup\",\r\n \"longTermRetentionBackupResourceId\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/locations/southeastasia/longTermRetentionManagedInstances/seageodr-gen5-gp/longTermRetentionDatabases/test-e18652d0-99a7-4bc7-9eb3-733ae3dae337/longTermRetentionManagedInstanceBackups/378455bf-dba5-4948-bfee-072c9223a4ed;132276925190000000\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b68e3c8a-4183-42f2-94d4-c87872dc8389" + "dc1083e6-8447-4051-98ff-cb158e9d7f09" ], "Accept-Language": [ "en-US" @@ -898,7 +898,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -915,16 +915,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/d8d33f75-5fe3-4c68-a33c-92eb7dca1177?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/f5fd46b0-f369-4337-8ed6-039d1eef0bd6?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/d8d33f75-5fe3-4c68-a33c-92eb7dca1177?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/f5fd46b0-f369-4337-8ed6-039d1eef0bd6?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "d8d33f75-5fe3-4c68-a33c-92eb7dca1177" + "f5fd46b0-f369-4337-8ed6-039d1eef0bd6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -933,10 +933,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "65984f87-f21d-4954-adb7-fb501480b7a9" + "b338eeff-6067-4098-becb-12960b55f7eb" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013215Z:65984f87-f21d-4954-adb7-fb501480b7a9" + "NORTHEUROPE:20200304T193933Z:b338eeff-6067-4098-becb-12960b55f7eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -945,7 +945,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:32:15 GMT" + "Wed, 04 Mar 2020 19:39:33 GMT" ], "Content-Length": [ "95" @@ -957,12 +957,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateManagedRestoreFromLtrBackupRequest\",\r\n \"startTime\": \"2020-03-04T01:32:15.793Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateManagedRestoreFromLtrBackupRequest\",\r\n \"startTime\": \"2020-03-04T19:39:32.857Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/d8d33f75-5fe3-4c68-a33c-92eb7dca1177?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDhkMzNmNzUtNWZlMy00YzY4LWEzM2MtOTJlYjdkY2ExMTc3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/f5fd46b0-f369-4337-8ed6-039d1eef0bd6?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZjVmZDQ2YjAtZjM2OS00MzM3LThlZDYtMDM5ZDFlZWYwYmQ2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -970,7 +970,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -984,7 +984,7 @@ "15" ], "x-ms-request-id": [ - "1c1f53fb-5b3a-415d-8100-b72692930149" + "e0b7e327-13a7-43f8-b277-192027eda893" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -993,10 +993,10 @@ "14985" ], "x-ms-correlation-request-id": [ - "27526763-f5f5-4be7-91d8-821512dfd610" + "4435b5ed-3183-48c4-b92b-036b3c42466d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013231Z:27526763-f5f5-4be7-91d8-821512dfd610" + "NORTHEUROPE:20200304T193948Z:4435b5ed-3183-48c4-b92b-036b3c42466d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1005,7 +1005,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:32:31 GMT" + "Wed, 04 Mar 2020 19:39:48 GMT" ], "Content-Length": [ "108" @@ -1017,12 +1017,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d8d33f75-5fe3-4c68-a33c-92eb7dca1177\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T01:32:15.793Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"f5fd46b0-f369-4337-8ed6-039d1eef0bd6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T19:39:32.857Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/d8d33f75-5fe3-4c68-a33c-92eb7dca1177?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDhkMzNmNzUtNWZlMy00YzY4LWEzM2MtOTJlYjdkY2ExMTc3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/f5fd46b0-f369-4337-8ed6-039d1eef0bd6?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZjVmZDQ2YjAtZjM2OS00MzM3LThlZDYtMDM5ZDFlZWYwYmQ2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1030,7 +1030,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -1044,7 +1044,7 @@ "15" ], "x-ms-request-id": [ - "1d6f33c1-181e-49d9-9b8b-a565afcdec10" + "3bd7aceb-2917-4459-9f3b-622d39567ec1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1053,10 +1053,10 @@ "14984" ], "x-ms-correlation-request-id": [ - "76490f26-7f19-408b-9bd7-d2f2242fc475" + "837bde27-2591-48e8-a835-2c1249ca4a28" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013246Z:76490f26-7f19-408b-9bd7-d2f2242fc475" + "NORTHEUROPE:20200304T194003Z:837bde27-2591-48e8-a835-2c1249ca4a28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1065,7 +1065,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:32:46 GMT" + "Wed, 04 Mar 2020 19:40:03 GMT" ], "Content-Length": [ "108" @@ -1077,12 +1077,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d8d33f75-5fe3-4c68-a33c-92eb7dca1177\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T01:32:15.793Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"f5fd46b0-f369-4337-8ed6-039d1eef0bd6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T19:39:32.857Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/d8d33f75-5fe3-4c68-a33c-92eb7dca1177?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDhkMzNmNzUtNWZlMy00YzY4LWEzM2MtOTJlYjdkY2ExMTc3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/f5fd46b0-f369-4337-8ed6-039d1eef0bd6?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZjVmZDQ2YjAtZjM2OS00MzM3LThlZDYtMDM5ZDFlZWYwYmQ2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1090,7 +1090,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -1104,7 +1104,7 @@ "15" ], "x-ms-request-id": [ - "254169d4-0140-4862-95f4-b05ab0952c9c" + "44bee10c-cc59-4867-bf10-8039db7cefc7" ], "x-ms-ratelimit-remaining-subscription-reads": [ "14983" @@ -1113,10 +1113,10 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "e8d3a1eb-99c2-4c18-b9b7-f56bb1832a60" + "3c3d9466-d754-4596-8d16-c06fb3ee4807" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013302Z:e8d3a1eb-99c2-4c18-b9b7-f56bb1832a60" + "NORTHEUROPE:20200304T194019Z:3c3d9466-d754-4596-8d16-c06fb3ee4807" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1125,7 +1125,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:33:01 GMT" + "Wed, 04 Mar 2020 19:40:19 GMT" ], "Content-Length": [ "108" @@ -1137,12 +1137,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d8d33f75-5fe3-4c68-a33c-92eb7dca1177\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T01:32:15.793Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"f5fd46b0-f369-4337-8ed6-039d1eef0bd6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T19:39:32.857Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/d8d33f75-5fe3-4c68-a33c-92eb7dca1177?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDhkMzNmNzUtNWZlMy00YzY4LWEzM2MtOTJlYjdkY2ExMTc3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/f5fd46b0-f369-4337-8ed6-039d1eef0bd6?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZjVmZDQ2YjAtZjM2OS00MzM3LThlZDYtMDM5ZDFlZWYwYmQ2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1150,7 +1150,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -1164,19 +1164,19 @@ "15" ], "x-ms-request-id": [ - "d7507a06-0b1d-43ac-bbb0-1fcef4144fad" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "8947e09b-c2a1-47ec-8f7f-cb8b11e09037" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], "x-ms-correlation-request-id": [ - "8411a136-cf28-4946-b42e-816a550cd5be" + "2c52e3c4-206e-4c92-b4e0-e75cba1cf974" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013317Z:8411a136-cf28-4946-b42e-816a550cd5be" + "NORTHEUROPE:20200304T194034Z:2c52e3c4-206e-4c92-b4e0-e75cba1cf974" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1185,7 +1185,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:33:17 GMT" + "Wed, 04 Mar 2020 19:40:34 GMT" ], "Content-Length": [ "108" @@ -1197,12 +1197,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d8d33f75-5fe3-4c68-a33c-92eb7dca1177\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T01:32:15.793Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"f5fd46b0-f369-4337-8ed6-039d1eef0bd6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T19:39:32.857Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/d8d33f75-5fe3-4c68-a33c-92eb7dca1177?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDhkMzNmNzUtNWZlMy00YzY4LWEzM2MtOTJlYjdkY2ExMTc3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/f5fd46b0-f369-4337-8ed6-039d1eef0bd6?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZjVmZDQ2YjAtZjM2OS00MzM3LThlZDYtMDM5ZDFlZWYwYmQ2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1210,7 +1210,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -1224,7 +1224,7 @@ "15" ], "x-ms-request-id": [ - "3dabc791-f5ed-43b4-80af-74701341821b" + "ba5483e6-b814-4817-8559-b7486bdd6d12" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1233,10 +1233,10 @@ "14981" ], "x-ms-correlation-request-id": [ - "4165c174-b294-490a-8c3b-370ccb67f0f1" + "30ef15a9-d159-4b8b-bb9e-726ed00ef93c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013333Z:4165c174-b294-490a-8c3b-370ccb67f0f1" + "NORTHEUROPE:20200304T194050Z:30ef15a9-d159-4b8b-bb9e-726ed00ef93c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1245,7 +1245,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:33:33 GMT" + "Wed, 04 Mar 2020 19:40:49 GMT" ], "Content-Length": [ "108" @@ -1257,12 +1257,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d8d33f75-5fe3-4c68-a33c-92eb7dca1177\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T01:32:15.793Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"f5fd46b0-f369-4337-8ed6-039d1eef0bd6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T19:39:32.857Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/d8d33f75-5fe3-4c68-a33c-92eb7dca1177?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDhkMzNmNzUtNWZlMy00YzY4LWEzM2MtOTJlYjdkY2ExMTc3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/f5fd46b0-f369-4337-8ed6-039d1eef0bd6?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZjVmZDQ2YjAtZjM2OS00MzM3LThlZDYtMDM5ZDFlZWYwYmQ2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1270,7 +1270,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -1284,7 +1284,7 @@ "15" ], "x-ms-request-id": [ - "26ef23c1-ebb4-42c0-bab5-3567c4c238ef" + "288a4e1e-239c-4c30-a713-9033d9974342" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1293,10 +1293,10 @@ "14980" ], "x-ms-correlation-request-id": [ - "fc9d1dae-7016-42ef-b599-06975473a9b5" + "2a72571d-b0e7-406a-b854-1dc2030cb8dc" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013348Z:fc9d1dae-7016-42ef-b599-06975473a9b5" + "NORTHEUROPE:20200304T194105Z:2a72571d-b0e7-406a-b854-1dc2030cb8dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1305,7 +1305,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:33:48 GMT" + "Wed, 04 Mar 2020 19:41:04 GMT" ], "Content-Length": [ "108" @@ -1317,12 +1317,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d8d33f75-5fe3-4c68-a33c-92eb7dca1177\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T01:32:15.793Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"f5fd46b0-f369-4337-8ed6-039d1eef0bd6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T19:39:32.857Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/d8d33f75-5fe3-4c68-a33c-92eb7dca1177?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDhkMzNmNzUtNWZlMy00YzY4LWEzM2MtOTJlYjdkY2ExMTc3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/f5fd46b0-f369-4337-8ed6-039d1eef0bd6?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZjVmZDQ2YjAtZjM2OS00MzM3LThlZDYtMDM5ZDFlZWYwYmQ2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1330,7 +1330,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -1344,7 +1344,7 @@ "15" ], "x-ms-request-id": [ - "4bd45c68-a4d0-4583-a231-96e15640e9a6" + "49538079-c87d-40b7-a98b-bf272c074b69" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1353,10 +1353,10 @@ "14979" ], "x-ms-correlation-request-id": [ - "66248f38-6395-4054-8260-f20ba336bed0" + "60164cc6-21f4-4d38-b05d-d73bdfd10652" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013404Z:66248f38-6395-4054-8260-f20ba336bed0" + "NORTHEUROPE:20200304T194120Z:60164cc6-21f4-4d38-b05d-d73bdfd10652" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1365,7 +1365,67 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:34:03 GMT" + "Wed, 04 Mar 2020 19:41:20 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"f5fd46b0-f369-4337-8ed6-039d1eef0bd6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-04T19:39:32.857Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/f5fd46b0-f369-4337-8ed6-039d1eef0bd6?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZjVmZDQ2YjAtZjM2OS00MzM3LThlZDYtMDM5ZDFlZWYwYmQ2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "6dfd5335-889d-47b0-8c8c-cca2fcadbaac" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "00efff83-130f-479e-b1e6-8d902446d7df" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200304T194136Z:00efff83-130f-479e-b1e6-8d902446d7df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Mar 2020 19:41:36 GMT" ], "Content-Length": [ "107" @@ -1377,12 +1437,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d8d33f75-5fe3-4c68-a33c-92eb7dca1177\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-04T01:32:15.793Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"f5fd46b0-f369-4337-8ed6-039d1eef0bd6\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-04T19:39:32.857Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-restore-with-rg-x?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS13aXRoLXJnLXg/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-restore-with-rg-2?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS13aXRoLXJnLTI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1390,7 +1450,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -1401,19 +1461,19 @@ "no-cache" ], "x-ms-request-id": [ - "ba4b6f22-816c-4fa8-94b2-fb028969051c" + "a8ebade9-52c3-40b0-9ce8-180bb77b5b80" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14977" ], "x-ms-correlation-request-id": [ - "41d18dc3-63fc-48fa-8627-b0be649abf55" + "2344071f-a023-430d-9d2d-249429598e67" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013404Z:41d18dc3-63fc-48fa-8627-b0be649abf55" + "NORTHEUROPE:20200304T194137Z:2344071f-a023-430d-9d2d-249429598e67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1422,10 +1482,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:34:03 GMT" + "Wed, 04 Mar 2020 19:41:36 GMT" ], "Content-Length": [ - "456" + "454" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1434,17 +1494,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-04T01:32:16.107Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-restore-with-rg-x\",\r\n \"name\": \"ps-test-restore-with-rg-x\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-04T19:39:33.2Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-restore-with-rg-2\",\r\n \"name\": \"ps-test-restore-with-rg-2\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-restore-with-rg-x?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS13aXRoLXJnLXg/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-restore-with-rg-2?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS13aXRoLXJnLTI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7428714-8d3c-433a-8924-19bc795a9c81" + "03b61db4-5a18-40ca-9126-f207417bf7db" ], "Accept-Language": [ "en-US" @@ -1453,7 +1513,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -1464,19 +1524,19 @@ "no-cache" ], "x-ms-request-id": [ - "11a727bf-cc1c-4bdc-9893-1e3b991eba75" + "97dc9fd9-02f3-4871-9c37-f958a1a0207a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14976" ], "x-ms-correlation-request-id": [ - "7bd8c3b6-a412-4001-9b27-c892176d9675" + "12a2b2dd-6fdf-4404-b13f-aaa93c537b7f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013404Z:7bd8c3b6-a412-4001-9b27-c892176d9675" + "NORTHEUROPE:20200304T194137Z:12a2b2dd-6fdf-4404-b13f-aaa93c537b7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1485,10 +1545,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:34:04 GMT" + "Wed, 04 Mar 2020 19:41:37 GMT" ], "Content-Length": [ - "456" + "454" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1497,17 +1557,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-04T01:32:16.107Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-restore-with-rg-x\",\r\n \"name\": \"ps-test-restore-with-rg-x\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"status\": \"Online\",\r\n \"creationDate\": \"2020-03-04T19:39:33.2Z\",\r\n \"defaultSecondaryLocation\": \"northeurope\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-restore-with-rg-2\",\r\n \"name\": \"ps-test-restore-with-rg-2\",\r\n \"type\": \"Microsoft.Sql/managedInstances/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/resourceGroups/ps-test-rg/providers/Microsoft.Sql/managedInstances/ps-test-mi/databases/ps-test-restore-with-rg-x?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS13aXRoLXJnLXg/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/cl_stage_sea_cv/providers/Microsoft.Sql/managedInstances/seageodr-gen5-gp/databases/ps-test-restore-with-rg-2?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL2NsX3N0YWdlX3NlYV9jdi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3NlYWdlb2RyLWdlbjUtZ3AvZGF0YWJhc2VzL3BzLXRlc3QtcmVzdG9yZS13aXRoLXJnLTI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09614a27-455d-43d9-a8fe-be15886fd9dd" + "5fd6dfb9-5946-4f7a-abcd-bfbe14cefc70" ], "Accept-Language": [ "en-US" @@ -1516,7 +1576,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -1527,16 +1587,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/31a73580-c5f0-4dca-9b5f-bffa39738617?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/7fc26cea-e820-4138-9e90-383226abd968?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/31a73580-c5f0-4dca-9b5f-bffa39738617?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/7fc26cea-e820-4138-9e90-383226abd968?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "31a73580-c5f0-4dca-9b5f-bffa39738617" + "7fc26cea-e820-4138-9e90-383226abd968" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1545,10 +1605,10 @@ "14999" ], "x-ms-correlation-request-id": [ - "0fe916d5-726d-4b53-a848-4e74a8c0a164" + "9f0898ef-ee92-4cfd-bfa4-6943bfaf410a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013405Z:0fe916d5-726d-4b53-a848-4e74a8c0a164" + "NORTHEUROPE:20200304T194137Z:9f0898ef-ee92-4cfd-bfa4-6943bfaf410a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1557,7 +1617,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:34:04 GMT" + "Wed, 04 Mar 2020 19:41:37 GMT" ], "Content-Length": [ "74" @@ -1569,12 +1629,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"DropManagedDatabase\",\r\n \"startTime\": \"2020-03-04T01:34:05.503Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"DropManagedDatabase\",\r\n \"startTime\": \"2020-03-04T19:41:37.713Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/31a73580-c5f0-4dca-9b5f-bffa39738617?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMzFhNzM1ODAtYzVmMC00ZGNhLTliNWYtYmZmYTM5NzM4NjE3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseAzureAsyncOperation/7fc26cea-e820-4138-9e90-383226abd968?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vN2ZjMjZjZWEtZTgyMC00MTM4LTllOTAtMzgzMjI2YWJkOTY4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1582,7 +1642,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -1596,19 +1656,19 @@ "15" ], "x-ms-request-id": [ - "9fc68d08-6595-480d-908c-654b5fcb7671" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "126b9320-d9e8-40e2-b843-5021191fda32" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], "x-ms-correlation-request-id": [ - "09fe44b0-9314-44cf-9aaa-294732bf6855" + "5b74225c-6fa8-42f4-911b-e23d11f2d8f8" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013420Z:09fe44b0-9314-44cf-9aaa-294732bf6855" + "NORTHEUROPE:20200304T194153Z:5b74225c-6fa8-42f4-911b-e23d11f2d8f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1617,7 +1677,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:34:19 GMT" + "Wed, 04 Mar 2020 19:41:52 GMT" ], "Content-Length": [ "107" @@ -1629,12 +1689,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"31a73580-c5f0-4dca-9b5f-bffa39738617\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-04T01:34:05.503Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"7fc26cea-e820-4138-9e90-383226abd968\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-04T19:41:37.713Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/709b4d09-b251-4ae8-8998-e1954ee45cf9/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/31a73580-c5f0-4dca-9b5f-bffa39738617?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZU9wZXJhdGlvblJlc3VsdHMvMzFhNzM1ODAtYzVmMC00ZGNhLTliNWYtYmZmYTM5NzM4NjE3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedDatabaseOperationResults/7fc26cea-e820-4138-9e90-383226abd968?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWREYXRhYmFzZU9wZXJhdGlvblJlc3VsdHMvN2ZjMjZjZWEtZTgyMC00MTM4LTllOTAtMzgzMjI2YWJkOTY4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1642,7 +1702,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.39.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.40.0.0" ] }, "ResponseHeaders": { @@ -1653,19 +1713,19 @@ "no-cache" ], "x-ms-request-id": [ - "7c21a935-8bfc-4ae3-9d82-d408732dedd4" + "92953517-9bd0-40f7-8862-901ea949b7e5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14974" ], "x-ms-correlation-request-id": [ - "afe27a79-a41b-4838-8928-9a523ad88f37" + "aa24db95-5ef7-491d-9ef3-d55349cf4647" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200304T013421Z:afe27a79-a41b-4838-8928-9a523ad88f37" + "NORTHEUROPE:20200304T194153Z:aa24db95-5ef7-491d-9ef3-d55349cf4647" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1674,7 +1734,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Mar 2020 01:34:21 GMT" + "Wed, 04 Mar 2020 19:41:53 GMT" ], "Expires": [ "-1" @@ -1686,6 +1746,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "709b4d09-b251-4ae8-8998-e1954ee45cf9" + "SubscriptionId": "8cfb8b62-bcd6-4713-89ad-18097f75cc5b" } } \ No newline at end of file From b0b3f79bef95a08124a1ba28f92e71498e1c9a3e Mon Sep 17 00:00:00 2001 From: "dixue@microsoft.com" Date: Thu, 5 Mar 2020 15:53:34 +0800 Subject: [PATCH 59/61] for RC2 release --- ChangeLog.md | 13 +- src/Network/Network/Az.Network.psd1 | 7 +- src/Network/Network/ChangeLog.md | 6 +- src/Sql/Sql/Az.Sql.psd1 | 420 +- src/Sql/Sql/ChangeLog.md | 6 +- tools/Az/Az.psd1 | 495 +- ...soft.Azure.PowerShell.Cmdlets.Sql.dll.json | 5157 +++++++++++++++-- 7 files changed, 5244 insertions(+), 860 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index d1c23668250d..a0dc13dfca5d 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -36,6 +36,9 @@ #### Az.Network * Updated Sql Management SDK. +* Fixed a naming-difference issue in PrivateLinkServiceConnectionState class. + - Mapping the field ActionsRequired to ActionRequired. +* Added PublicNetworkAccess to 'New-AzSqlServer' and 'Set-AzSqlServer' #### Az.Resources * Fixed for null reference bug in 'Get-AzRoleAssignment' @@ -54,7 +57,15 @@ * Brought ScopedDeployment from SDK 3.3.0 #### Az.Sql -* Added PublicNetworkAccess to `New-AzSqlServer` and `Set-AzSqlServer` +* Added PublicNetworkAccess to 'New-AzSqlServer' and 'Set-AzSqlServer' +* Added support for Long Term Retention backup configuration for Managed Databases + - Get/Set LTR policy on a managed database + - Get LTR backup(s) by managed database, managed instance, or by location + - Remove an LTR backup + - Restore an LTR backup to create a new managed database +* Added MinimalTlsVersion to New-AzSqlServer and Set-AzSqlServer +* Added MinimalTlsVersion to New-AzSqlInstance and Set-AzSqlInstance +* Bumped SQL SDK version for Az.Network #### Az.Storage * Supported AllowProtectedAppendWrite in ImmutabilityPolicy diff --git a/src/Network/Network/Az.Network.psd1 b/src/Network/Network/Az.Network.psd1 index 73c5832c82cd..3b764aee623a 100644 --- a/src/Network/Network/Az.Network.psd1 +++ b/src/Network/Network/Az.Network.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 3/4/2020 +# Generated on: 3/5/2020 # @{ @@ -509,7 +509,10 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Updated Sql Management SDK.' + ReleaseNotes = '* Updated Sql Management SDK +* Fixed a naming-difference issue in PrivateLinkServiceConnectionState class. + - Mapping the field ActionsRequired to ActionRequired. +* Added PublicNetworkAccess to ''New-AzSqlServer'' and ''Set-AzSqlServer''' # Prerelease string of this module # Prerelease = '' diff --git a/src/Network/Network/ChangeLog.md b/src/Network/Network/ChangeLog.md index 01f04eafc82d..14d56d13821e 100644 --- a/src/Network/Network/ChangeLog.md +++ b/src/Network/Network/ChangeLog.md @@ -19,12 +19,12 @@ ---> ## Upcoming Release -* Fixed a naming-difference issue in PrivateLinkServiceConnectionState class. - - Mapping the field ActionsRequired to ActionRequired. -* Added PublicNetworkAccess to `New-AzSqlServer` and `Set-AzSqlServer` ## Version 2.3.2 * Updated Sql Management SDK. +* Fixed a naming-difference issue in PrivateLinkServiceConnectionState class. + - Mapping the field ActionsRequired to ActionRequired. +* Added PublicNetworkAccess to `New-AzSqlServer` and `Set-AzSqlServer` ## Version 2.3.1 * Added one extra parameter note for parameter `-EnableProxyProtocol` for `New-AzPrivateLinkService` cmdlet. diff --git a/src/Sql/Sql/Az.Sql.psd1 b/src/Sql/Sql/Az.Sql.psd1 index 87f978dac622..e2a09ef29701 100644 --- a/src/Sql/Sql/Az.Sql.psd1 +++ b/src/Sql/Sql/Az.Sql.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 3/3/2020 +# Generated on: 3/5/2020 # @{ @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = 'Microsoft.Azure.Management.Sql.dll', +RequiredAssemblies = 'Microsoft.Azure.Management.Sql.dll', 'Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. @@ -75,215 +75,215 @@ NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Sql.dll') FunctionsToExport = @() # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. -CmdletsToExport = 'Get-AzSqlDatabaseTransparentDataEncryption', - 'Get-AzSqlDatabaseTransparentDataEncryptionActivity', - 'Set-AzSqlDatabaseTransparentDataEncryption', - 'Get-AzSqlDatabaseUpgradeHint', 'Get-AzSqlServerUpgradeHint', - 'Get-AzSqlServerServiceObjective', - 'Get-AzSqlServerActiveDirectoryAdministrator', - 'Remove-AzSqlServerActiveDirectoryAdministrator', - 'Set-AzSqlServerActiveDirectoryAdministrator', 'Get-AzSqlServer', - 'New-AzSqlServer', 'Remove-AzSqlServer', 'Set-AzSqlServer', - 'Get-AzSqlServerCommunicationLink', - 'New-AzSqlServerCommunicationLink', - 'Remove-AzSqlServerCommunicationLink', - 'Get-AzSqlDatabaseReplicationLink', 'New-AzSqlDatabaseCopy', - 'New-AzSqlDatabaseSecondary', 'Remove-AzSqlDatabaseSecondary', - 'Set-AzSqlDatabaseSecondary', 'Get-AzSqlElasticPoolRecommendation', - 'Get-AzSqlDatabaseIndexRecommendation', - 'Start-AzSqlDatabaseExecuteIndexRecommendation', - 'Stop-AzSqlDatabaseExecuteIndexRecommendation', - 'Get-AzSqlServerFirewallRule', 'New-AzSqlServerFirewallRule', - 'Remove-AzSqlServerFirewallRule', 'Set-AzSqlServerFirewallRule', - 'Get-AzSqlElasticPool', 'Get-AzSqlElasticPoolActivity', - 'Get-AzSqlElasticPoolDatabase', 'New-AzSqlElasticPool', - 'Remove-AzSqlElasticPool', 'Set-AzSqlElasticPool', - 'Get-AzSqlServerDisasterRecoveryConfiguration', - 'Get-AzSqlServerDisasterRecoveryConfigurationActivity', - 'New-AzSqlServerDisasterRecoveryConfiguration', - 'Remove-AzSqlServerDisasterRecoveryConfiguration', - 'Set-AzSqlServerDisasterRecoveryConfiguration', - 'Resume-AzSqlDatabase', 'Suspend-AzSqlDatabase', - 'Get-AzSqlDatabaseDataMaskingPolicy', - 'Get-AzSqlDatabaseDataMaskingRule', - 'New-AzSqlDatabaseDataMaskingRule', - 'Remove-AzSqlDatabaseDataMaskingRule', - 'Set-AzSqlDatabaseDataMaskingPolicy', - 'Set-AzSqlDatabaseDataMaskingRule', 'Get-AzSqlCapability', - 'Get-AzSqlDatabase', 'Get-AzSqlDatabaseActivity', - 'Get-AzSqlDatabaseExpanded', 'New-AzSqlDatabase', - 'Remove-AzSqlDatabase', 'Set-AzSqlDatabase', - 'Get-AzSqlDatabaseImportExportStatus', 'New-AzSqlDatabaseExport', - 'New-AzSqlDatabaseImport', 'Get-AzSqlDatabaseGeoBackupPolicy', - 'Set-AzSqlDatabaseGeoBackupPolicy', - 'Get-AzSqlDatabaseBackupShortTermRetentionPolicy', - 'Set-AzSqlDatabaseBackupShortTermRetentionPolicy', - 'Get-AzSqlDatabaseBackupLongTermRetentionPolicy', - 'Set-AzSqlDatabaseBackupLongTermRetentionPolicy', - 'Get-AzSqlDatabaseLongTermRetentionBackup', - 'Remove-AzSqlDatabaseLongTermRetentionBackup', - 'Get-AzSqlDeletedDatabaseBackup', 'Get-AzSqlDatabaseGeoBackup', - 'Restore-AzSqlDatabase', 'Get-AzSqlDatabaseRestorePoint', - 'Get-AzSqlDatabaseRecommendedAction', - 'Get-AzSqlElasticPoolRecommendedAction', - 'Get-AzSqlServerRecommendedAction', - 'Set-AzSqlDatabaseRecommendedActionState', - 'Set-AzSqlElasticPoolRecommendedActionState', - 'Set-AzSqlServerRecommendedActionState', - 'Get-AzSqlElasticPoolAdvisor', 'Get-AzSqlServerAdvisor', - 'Set-AzSqlElasticPoolAdvisorAutoExecuteStatus', - 'Set-AzSqlServerAdvisorAutoExecuteStatus', - 'Get-AzSqlDatabaseAdvisor', - 'Set-AzSqlDatabaseAdvisorAutoExecuteStatus', - 'Get-AzSqlServerTransparentDataEncryptionProtector', - 'Set-AzSqlServerTransparentDataEncryptionProtector', - 'Add-AzSqlServerKeyVaultKey', 'Get-AzSqlServerKeyVaultKey', - 'Remove-AzSqlServerKeyVaultKey', 'Get-AzSqlDatabaseFailoverGroup', - 'New-AzSqlDatabaseFailoverGroup', - 'Add-AzSqlDatabaseToFailoverGroup', - 'Remove-AzSqlDatabaseFromFailoverGroup', - 'Remove-AzSqlDatabaseFailoverGroup', - 'Set-AzSqlDatabaseFailoverGroup', - 'Switch-AzSqlDatabaseFailoverGroup', 'New-AzSqlSyncGroup', - 'Update-AzSqlSyncGroup', 'Get-AzSqlSyncGroup', - 'Get-AzSqlSyncGroupLog', 'Remove-AzSqlSyncGroup', - 'Update-AzSqlSyncSchema', 'Get-AzSqlSyncSchema', - 'Start-AzSqlSyncGroupSync', 'Stop-AzSqlSyncGroupSync', - 'New-AzSqlSyncMember', 'Update-AzSqlSyncMember', - 'Get-AzSqlSyncMember', 'Remove-AzSqlSyncMember', 'New-AzSqlSyncAgent', - 'Get-AzSqlSyncAgent', 'Remove-AzSqlSyncAgent', - 'New-AzSqlSyncAgentKey', 'Get-AzSqlSyncAgentLinkedDatabase', - 'New-AzSqlServerVirtualNetworkRule', - 'Set-AzSqlServerVirtualNetworkRule', - 'Get-AzSqlServerVirtualNetworkRule', - 'Remove-AzSqlServerVirtualNetworkRule', - 'Stop-AzSqlDatabaseActivity', 'Get-AzSqlServerDnsAlias', - 'Remove-AzSqlServerDnsAlias', 'New-AzSqlServerDnsAlias', - 'Set-AzSqlServerDnsAlias', 'New-AzSqlDatabaseRestorePoint', - 'Remove-AzSqlDatabaseRestorePoint', 'Stop-AzSqlElasticPoolActivity', - 'Add-AzSqlServerTransparentDataEncryptionCertificate', - 'Add-AzSqlManagedInstanceTransparentDataEncryptionCertificate', - 'Update-AzSqlDatabaseVulnerabilityAssessmentSetting', - 'Get-AzSqlDatabaseVulnerabilityAssessmentSetting', - 'Clear-AzSqlDatabaseVulnerabilityAssessmentSetting', - 'Set-AzSqlDatabaseVulnerabilityAssessmentRuleBaseline', - 'Get-AzSqlDatabaseVulnerabilityAssessmentRuleBaseline', - 'Clear-AzSqlDatabaseVulnerabilityAssessmentRuleBaseline', - 'Convert-AzSqlDatabaseVulnerabilityAssessmentScan', - 'Get-AzSqlDatabaseVulnerabilityAssessmentScanRecord', - 'Start-AzSqlDatabaseVulnerabilityAssessmentScan', - 'Get-AzSqlInstance', 'New-AzSqlInstance', 'Remove-AzSqlInstance', - 'Set-AzSqlInstance', 'Get-AzSqlInstanceDatabase', - 'New-AzSqlInstanceDatabase', 'Remove-AzSqlInstanceDatabase', - 'Restore-AzSqlInstanceDatabase', - 'Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting', - 'Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting', - 'Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting', - 'Set-AzSqlInstanceDatabaseVulnerabilityAssessmentRuleBaseline', - 'Get-AzSqlInstanceDatabaseVulnerabilityAssessmentRuleBaseline', - 'Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentRuleBaseline', - 'Convert-AzSqlInstanceDatabaseVulnerabilityAssessmentScan', - 'Get-AzSqlInstanceDatabaseVulnerabilityAssessmentScanRecord', - 'Start-AzSqlInstanceDatabaseVulnerabilityAssessmentScan', - 'Enable-AzSqlInstanceAdvancedDataSecurity', - 'Disable-AzSqlInstanceAdvancedDataSecurity', - 'Get-AzSqlInstanceAdvancedDataSecurityPolicy', - 'Get-AzSqlInstanceDatabaseGeoBackup', - 'Get-AzSqlInstanceDatabaseBackupShortTermRetentionPolicy', - 'Set-AzSqlInstanceDatabaseBackupShortTermRetentionPolicy', - 'Get-AzSqlDeletedInstanceDatabaseBackup', - 'Update-AzSqlInstanceVulnerabilityAssessmentSetting', - 'Get-AzSqlInstanceVulnerabilityAssessmentSetting', - 'Clear-AzSqlInstanceVulnerabilityAssessmentSetting', - 'Update-AzSqlServerVulnerabilityAssessmentSetting', - 'Get-AzSqlServerVulnerabilityAssessmentSetting', - 'Clear-AzSqlServerVulnerabilityAssessmentSetting', - 'Get-AzSqlDatabaseSensitivityClassification', - 'Get-AzSqlInstanceDatabaseSensitivityClassification', - 'Set-AzSqlDatabaseSensitivityClassification', - 'Set-AzSqlInstanceDatabaseSensitivityClassification', - 'Remove-AzSqlDatabaseSensitivityClassification', - 'Remove-AzSqlInstanceDatabaseSensitivityClassification', - 'Get-AzSqlDatabaseSensitivityRecommendation', - 'Get-AzSqlInstanceDatabaseSensitivityRecommendation', - 'Get-AzSqlVirtualCluster', 'Remove-AzSqlVirtualCluster', - 'Enable-AzSqlServerAdvancedDataSecurity', - 'Disable-AzSqlServerAdvancedDataSecurity', - 'Get-AzSqlServerAdvancedDataSecurityPolicy', - 'Get-AzSqlDatabaseInstanceFailoverGroup', - 'New-AzSqlDatabaseInstanceFailoverGroup', - 'Remove-AzSqlDatabaseInstanceFailoverGroup', - 'Set-AzSqlDatabaseInstanceFailoverGroup', - 'Switch-AzSqlDatabaseInstanceFailoverGroup', - 'Get-AzSqlServerAdvancedThreatProtectionSetting', - 'Clear-AzSqlServerAdvancedThreatProtectionSetting', - 'Update-AzSqlServerAdvancedThreatProtectionSetting', - 'Get-AzSqlDatabaseAdvancedThreatProtectionSetting', - 'Update-AzSqlDatabaseAdvancedThreatProtectionSetting', - 'Clear-AzSqlDatabaseAdvancedThreatProtectionSetting', - 'Add-AzSqlInstanceKeyVaultKey', 'Get-AzSqlInstanceKeyVaultKey', - 'Remove-AzSqlInstanceKeyVaultKey', - 'Get-AzSqlInstanceTransparentDataEncryptionProtector', - 'Set-AzSqlInstanceTransparentDataEncryptionProtector', - 'Get-AzSqlServerAudit', 'Get-AzSqlDatabaseAudit', - 'Set-AzSqlServerAudit', 'Set-AzSqlDatabaseAudit', - 'Get-AzSqlInstanceActiveDirectoryAdministrator', - 'Remove-AzSqlInstanceActiveDirectoryAdministrator', - 'Set-AzSqlInstanceActiveDirectoryAdministrator', - 'Remove-AzSqlServerAudit', 'Remove-AzSqlDatabaseAudit', - 'Get-AzSqlInstancePool', 'Set-AzSqlInstancePool', - 'New-AzSqlInstancePool', 'Remove-AzSqlInstancePool', - 'Get-AzSqlInstancePoolUsage', 'Invoke-AzSqlDatabaseFailover', - 'Invoke-AzSqlElasticPoolFailover', 'New-AzSqlElasticJobAgent', - 'Remove-AzSqlElasticJobAgent', 'Get-AzSqlElasticJobAgent', - 'Set-AzSqlElasticJobAgent', 'New-AzSqlElasticJobCredential', - 'Get-AzSqlElasticJobCredential', 'Set-AzSqlElasticJobCredential', - 'Remove-AzSqlElasticJobCredential', - 'New-AzSqlElasticJobTargetGroup', 'Get-AzSqlElasticJobTargetGroup', - 'Remove-AzSqlElasticJobTargetGroup', 'Add-AzSqlElasticJobTarget', - 'Remove-AzSqlElasticJobTarget', 'New-AzSqlElasticJob', - 'Get-AzSqlElasticJob', 'Set-AzSqlElasticJob', - 'Remove-AzSqlElasticJob', 'Add-AzSqlElasticJobStep', - 'Get-AzSqlElasticJobStep', 'Remove-AzSqlElasticJobStep', - 'Set-AzSqlElasticJobStep', 'Start-AzSqlElasticJob', - 'Stop-AzSqlElasticJob', 'Get-AzSqlElasticJobExecution', - 'Get-AzSqlElasticJobStepExecution', - 'Get-AzSqlElasticJobTargetExecution', - 'Enable-AzSqlDatabaseSensitivityRecommendation', - 'Disable-AzSqlDatabaseSensitivityRecommendation', - 'Enable-AzSqlInstanceDatabaseSensitivityRecommendation', - 'Disable-AzSqlInstanceDatabaseSensitivityRecommendation', - 'Get-AzSqlInstanceDatabaseLongTermRetentionBackup', - 'Remove-AzSqlInstanceDatabaseLongTermRetentionBackup', - 'Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy', - 'Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy', +CmdletsToExport = 'Get-AzSqlDatabaseTransparentDataEncryption', + 'Get-AzSqlDatabaseTransparentDataEncryptionActivity', + 'Set-AzSqlDatabaseTransparentDataEncryption', + 'Get-AzSqlDatabaseUpgradeHint', 'Get-AzSqlServerUpgradeHint', + 'Get-AzSqlServerServiceObjective', + 'Get-AzSqlServerActiveDirectoryAdministrator', + 'Remove-AzSqlServerActiveDirectoryAdministrator', + 'Set-AzSqlServerActiveDirectoryAdministrator', 'Get-AzSqlServer', + 'New-AzSqlServer', 'Remove-AzSqlServer', 'Set-AzSqlServer', + 'Get-AzSqlServerCommunicationLink', + 'New-AzSqlServerCommunicationLink', + 'Remove-AzSqlServerCommunicationLink', + 'Get-AzSqlDatabaseReplicationLink', 'New-AzSqlDatabaseCopy', + 'New-AzSqlDatabaseSecondary', 'Remove-AzSqlDatabaseSecondary', + 'Set-AzSqlDatabaseSecondary', 'Get-AzSqlElasticPoolRecommendation', + 'Get-AzSqlDatabaseIndexRecommendation', + 'Start-AzSqlDatabaseExecuteIndexRecommendation', + 'Stop-AzSqlDatabaseExecuteIndexRecommendation', + 'Get-AzSqlServerFirewallRule', 'New-AzSqlServerFirewallRule', + 'Remove-AzSqlServerFirewallRule', 'Set-AzSqlServerFirewallRule', + 'Get-AzSqlElasticPool', 'Get-AzSqlElasticPoolActivity', + 'Get-AzSqlElasticPoolDatabase', 'New-AzSqlElasticPool', + 'Remove-AzSqlElasticPool', 'Set-AzSqlElasticPool', + 'Get-AzSqlServerDisasterRecoveryConfiguration', + 'Get-AzSqlServerDisasterRecoveryConfigurationActivity', + 'New-AzSqlServerDisasterRecoveryConfiguration', + 'Remove-AzSqlServerDisasterRecoveryConfiguration', + 'Set-AzSqlServerDisasterRecoveryConfiguration', + 'Resume-AzSqlDatabase', 'Suspend-AzSqlDatabase', + 'Get-AzSqlDatabaseDataMaskingPolicy', + 'Get-AzSqlDatabaseDataMaskingRule', + 'New-AzSqlDatabaseDataMaskingRule', + 'Remove-AzSqlDatabaseDataMaskingRule', + 'Set-AzSqlDatabaseDataMaskingPolicy', + 'Set-AzSqlDatabaseDataMaskingRule', 'Get-AzSqlCapability', + 'Get-AzSqlDatabase', 'Get-AzSqlDatabaseActivity', + 'Get-AzSqlDatabaseExpanded', 'New-AzSqlDatabase', + 'Remove-AzSqlDatabase', 'Set-AzSqlDatabase', + 'Get-AzSqlDatabaseImportExportStatus', 'New-AzSqlDatabaseExport', + 'New-AzSqlDatabaseImport', 'Get-AzSqlDatabaseGeoBackupPolicy', + 'Set-AzSqlDatabaseGeoBackupPolicy', + 'Get-AzSqlDatabaseBackupShortTermRetentionPolicy', + 'Set-AzSqlDatabaseBackupShortTermRetentionPolicy', + 'Get-AzSqlDatabaseBackupLongTermRetentionPolicy', + 'Set-AzSqlDatabaseBackupLongTermRetentionPolicy', + 'Get-AzSqlDatabaseLongTermRetentionBackup', + 'Remove-AzSqlDatabaseLongTermRetentionBackup', + 'Get-AzSqlDeletedDatabaseBackup', 'Get-AzSqlDatabaseGeoBackup', + 'Restore-AzSqlDatabase', 'Get-AzSqlDatabaseRestorePoint', + 'Get-AzSqlDatabaseRecommendedAction', + 'Get-AzSqlElasticPoolRecommendedAction', + 'Get-AzSqlServerRecommendedAction', + 'Set-AzSqlDatabaseRecommendedActionState', + 'Set-AzSqlElasticPoolRecommendedActionState', + 'Set-AzSqlServerRecommendedActionState', + 'Get-AzSqlElasticPoolAdvisor', 'Get-AzSqlServerAdvisor', + 'Set-AzSqlElasticPoolAdvisorAutoExecuteStatus', + 'Set-AzSqlServerAdvisorAutoExecuteStatus', + 'Get-AzSqlDatabaseAdvisor', + 'Set-AzSqlDatabaseAdvisorAutoExecuteStatus', + 'Get-AzSqlServerTransparentDataEncryptionProtector', + 'Set-AzSqlServerTransparentDataEncryptionProtector', + 'Add-AzSqlServerKeyVaultKey', 'Get-AzSqlServerKeyVaultKey', + 'Remove-AzSqlServerKeyVaultKey', 'Get-AzSqlDatabaseFailoverGroup', + 'New-AzSqlDatabaseFailoverGroup', + 'Add-AzSqlDatabaseToFailoverGroup', + 'Remove-AzSqlDatabaseFromFailoverGroup', + 'Remove-AzSqlDatabaseFailoverGroup', + 'Set-AzSqlDatabaseFailoverGroup', + 'Switch-AzSqlDatabaseFailoverGroup', 'New-AzSqlSyncGroup', + 'Update-AzSqlSyncGroup', 'Get-AzSqlSyncGroup', + 'Get-AzSqlSyncGroupLog', 'Remove-AzSqlSyncGroup', + 'Update-AzSqlSyncSchema', 'Get-AzSqlSyncSchema', + 'Start-AzSqlSyncGroupSync', 'Stop-AzSqlSyncGroupSync', + 'New-AzSqlSyncMember', 'Update-AzSqlSyncMember', + 'Get-AzSqlSyncMember', 'Remove-AzSqlSyncMember', 'New-AzSqlSyncAgent', + 'Get-AzSqlSyncAgent', 'Remove-AzSqlSyncAgent', + 'New-AzSqlSyncAgentKey', 'Get-AzSqlSyncAgentLinkedDatabase', + 'New-AzSqlServerVirtualNetworkRule', + 'Set-AzSqlServerVirtualNetworkRule', + 'Get-AzSqlServerVirtualNetworkRule', + 'Remove-AzSqlServerVirtualNetworkRule', + 'Stop-AzSqlDatabaseActivity', 'Get-AzSqlServerDnsAlias', + 'Remove-AzSqlServerDnsAlias', 'New-AzSqlServerDnsAlias', + 'Set-AzSqlServerDnsAlias', 'New-AzSqlDatabaseRestorePoint', + 'Remove-AzSqlDatabaseRestorePoint', 'Stop-AzSqlElasticPoolActivity', + 'Add-AzSqlServerTransparentDataEncryptionCertificate', + 'Add-AzSqlManagedInstanceTransparentDataEncryptionCertificate', + 'Update-AzSqlDatabaseVulnerabilityAssessmentSetting', + 'Get-AzSqlDatabaseVulnerabilityAssessmentSetting', + 'Clear-AzSqlDatabaseVulnerabilityAssessmentSetting', + 'Set-AzSqlDatabaseVulnerabilityAssessmentRuleBaseline', + 'Get-AzSqlDatabaseVulnerabilityAssessmentRuleBaseline', + 'Clear-AzSqlDatabaseVulnerabilityAssessmentRuleBaseline', + 'Convert-AzSqlDatabaseVulnerabilityAssessmentScan', + 'Get-AzSqlDatabaseVulnerabilityAssessmentScanRecord', + 'Start-AzSqlDatabaseVulnerabilityAssessmentScan', + 'Get-AzSqlInstance', 'New-AzSqlInstance', 'Remove-AzSqlInstance', + 'Set-AzSqlInstance', 'Get-AzSqlInstanceDatabase', + 'New-AzSqlInstanceDatabase', 'Remove-AzSqlInstanceDatabase', + 'Restore-AzSqlInstanceDatabase', + 'Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting', + 'Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting', + 'Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting', + 'Set-AzSqlInstanceDatabaseVulnerabilityAssessmentRuleBaseline', + 'Get-AzSqlInstanceDatabaseVulnerabilityAssessmentRuleBaseline', + 'Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentRuleBaseline', + 'Convert-AzSqlInstanceDatabaseVulnerabilityAssessmentScan', + 'Get-AzSqlInstanceDatabaseVulnerabilityAssessmentScanRecord', + 'Start-AzSqlInstanceDatabaseVulnerabilityAssessmentScan', + 'Enable-AzSqlInstanceAdvancedDataSecurity', + 'Disable-AzSqlInstanceAdvancedDataSecurity', + 'Get-AzSqlInstanceAdvancedDataSecurityPolicy', + 'Get-AzSqlInstanceDatabaseGeoBackup', + 'Get-AzSqlInstanceDatabaseBackupShortTermRetentionPolicy', + 'Set-AzSqlInstanceDatabaseBackupShortTermRetentionPolicy', + 'Get-AzSqlDeletedInstanceDatabaseBackup', + 'Update-AzSqlInstanceVulnerabilityAssessmentSetting', + 'Get-AzSqlInstanceVulnerabilityAssessmentSetting', + 'Clear-AzSqlInstanceVulnerabilityAssessmentSetting', + 'Update-AzSqlServerVulnerabilityAssessmentSetting', + 'Get-AzSqlServerVulnerabilityAssessmentSetting', + 'Clear-AzSqlServerVulnerabilityAssessmentSetting', + 'Get-AzSqlDatabaseSensitivityClassification', + 'Get-AzSqlInstanceDatabaseSensitivityClassification', + 'Set-AzSqlDatabaseSensitivityClassification', + 'Set-AzSqlInstanceDatabaseSensitivityClassification', + 'Remove-AzSqlDatabaseSensitivityClassification', + 'Remove-AzSqlInstanceDatabaseSensitivityClassification', + 'Get-AzSqlDatabaseSensitivityRecommendation', + 'Get-AzSqlInstanceDatabaseSensitivityRecommendation', + 'Get-AzSqlVirtualCluster', 'Remove-AzSqlVirtualCluster', + 'Enable-AzSqlServerAdvancedDataSecurity', + 'Disable-AzSqlServerAdvancedDataSecurity', + 'Get-AzSqlServerAdvancedDataSecurityPolicy', + 'Get-AzSqlDatabaseInstanceFailoverGroup', + 'New-AzSqlDatabaseInstanceFailoverGroup', + 'Remove-AzSqlDatabaseInstanceFailoverGroup', + 'Set-AzSqlDatabaseInstanceFailoverGroup', + 'Switch-AzSqlDatabaseInstanceFailoverGroup', + 'Get-AzSqlServerAdvancedThreatProtectionSetting', + 'Clear-AzSqlServerAdvancedThreatProtectionSetting', + 'Update-AzSqlServerAdvancedThreatProtectionSetting', + 'Get-AzSqlDatabaseAdvancedThreatProtectionSetting', + 'Update-AzSqlDatabaseAdvancedThreatProtectionSetting', + 'Clear-AzSqlDatabaseAdvancedThreatProtectionSetting', + 'Add-AzSqlInstanceKeyVaultKey', 'Get-AzSqlInstanceKeyVaultKey', + 'Remove-AzSqlInstanceKeyVaultKey', + 'Get-AzSqlInstanceTransparentDataEncryptionProtector', + 'Set-AzSqlInstanceTransparentDataEncryptionProtector', + 'Get-AzSqlServerAudit', 'Get-AzSqlDatabaseAudit', + 'Set-AzSqlServerAudit', 'Set-AzSqlDatabaseAudit', + 'Get-AzSqlInstanceActiveDirectoryAdministrator', + 'Remove-AzSqlInstanceActiveDirectoryAdministrator', + 'Set-AzSqlInstanceActiveDirectoryAdministrator', + 'Remove-AzSqlServerAudit', 'Remove-AzSqlDatabaseAudit', + 'Get-AzSqlInstancePool', 'Set-AzSqlInstancePool', + 'New-AzSqlInstancePool', 'Remove-AzSqlInstancePool', + 'Get-AzSqlInstancePoolUsage', 'Invoke-AzSqlDatabaseFailover', + 'Invoke-AzSqlElasticPoolFailover', 'New-AzSqlElasticJobAgent', + 'Remove-AzSqlElasticJobAgent', 'Get-AzSqlElasticJobAgent', + 'Set-AzSqlElasticJobAgent', 'New-AzSqlElasticJobCredential', + 'Get-AzSqlElasticJobCredential', 'Set-AzSqlElasticJobCredential', + 'Remove-AzSqlElasticJobCredential', + 'New-AzSqlElasticJobTargetGroup', 'Get-AzSqlElasticJobTargetGroup', + 'Remove-AzSqlElasticJobTargetGroup', 'Add-AzSqlElasticJobTarget', + 'Remove-AzSqlElasticJobTarget', 'New-AzSqlElasticJob', + 'Get-AzSqlElasticJob', 'Set-AzSqlElasticJob', + 'Remove-AzSqlElasticJob', 'Add-AzSqlElasticJobStep', + 'Get-AzSqlElasticJobStep', 'Remove-AzSqlElasticJobStep', + 'Set-AzSqlElasticJobStep', 'Start-AzSqlElasticJob', + 'Stop-AzSqlElasticJob', 'Get-AzSqlElasticJobExecution', + 'Get-AzSqlElasticJobStepExecution', + 'Get-AzSqlElasticJobTargetExecution', + 'Enable-AzSqlDatabaseSensitivityRecommendation', + 'Disable-AzSqlDatabaseSensitivityRecommendation', + 'Enable-AzSqlInstanceDatabaseSensitivityRecommendation', + 'Disable-AzSqlInstanceDatabaseSensitivityRecommendation', + 'Get-AzSqlInstanceDatabaseLongTermRetentionBackup', + 'Remove-AzSqlInstanceDatabaseLongTermRetentionBackup', + 'Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy', + 'Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy', 'Disable-AzSqlServerActiveDirectoryOnlyAuthentication' # Variables to export from this module # VariablesToExport = @() # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. -AliasesToExport = 'Get-AzSqlDatabaseServerAuditingPolicy', - 'Remove-AzSqlDatabaseServerAuditing', - 'Set-AzSqlDatabaseServerAuditingPolicy', - 'Use-AzSqlDatabaseServerAuditingPolicy', - 'Get-AzSqlDatabaseLongTermRetentionPolicy', - 'Set-AzSqlDatabaseLongTermRetentionPolicy', - 'Update-AzSqlDatabaseVulnerabilityAssessmentSetting', - 'Get-AzSqlDatabaseVulnerabilityAssessmentSetting', - 'Clear-AzSqlDatabaseVulnerabilityAssessmentSetting', - 'Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting', - 'Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting', - 'Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting', - 'Enable-AzSqlServerAdvancedThreatProtection', - 'Disable-AzSqlServerAdvancedThreatProtection', - 'Get-AzSqlServerAdvancedThreatProtectionSetting', - 'Get-AzSqlServerThreatDetectionSetting', - 'Remove-AzSqlServerThreatDetectionSetting', - 'Set-AzSqlServerThreatDetectionSetting', - 'Get-AzSqlDatabaseThreatDetectionSetting', - 'Set-AzSqlDatabaseThreatDetectionSetting', - 'Remove-AzSqlDatabaseThreatDetectionSetting', +AliasesToExport = 'Get-AzSqlDatabaseServerAuditingPolicy', + 'Remove-AzSqlDatabaseServerAuditing', + 'Set-AzSqlDatabaseServerAuditingPolicy', + 'Use-AzSqlDatabaseServerAuditingPolicy', + 'Get-AzSqlDatabaseLongTermRetentionPolicy', + 'Set-AzSqlDatabaseLongTermRetentionPolicy', + 'Update-AzSqlDatabaseVulnerabilityAssessmentSetting', + 'Get-AzSqlDatabaseVulnerabilityAssessmentSetting', + 'Clear-AzSqlDatabaseVulnerabilityAssessmentSetting', + 'Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting', + 'Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting', + 'Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting', + 'Enable-AzSqlServerAdvancedThreatProtection', + 'Disable-AzSqlServerAdvancedThreatProtection', + 'Get-AzSqlServerAdvancedThreatProtectionSetting', + 'Get-AzSqlServerThreatDetectionSetting', + 'Remove-AzSqlServerThreatDetectionSetting', + 'Set-AzSqlServerThreatDetectionSetting', + 'Get-AzSqlDatabaseThreatDetectionSetting', + 'Set-AzSqlDatabaseThreatDetectionSetting', + 'Remove-AzSqlDatabaseThreatDetectionSetting', 'Set-AzSqlInstanceTDEProtector', 'Get-AzSqlInstanceTDEProtector' # DSC resources to export from this module @@ -313,7 +313,15 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Added PublicNetworkAccess to New-AzSqlServer and Set-AzSqlServer' + ReleaseNotes = '* Added PublicNetworkAccess to ''New-AzSqlServer'' and ''Set-AzSqlServer'' +* Added support for Long Term Retention backup configuration for Managed Databases + - Get/Set LTR policy on a managed database + - Get LTR backup(s) by managed database, managed instance, or by location + - Remove an LTR backup + - Restore an LTR backup to create a new managed database +* Added MinimalTlsVersion to ''New-AzSqlServer'' and ''Set-AzSqlServer'' +* Added MinimalTlsVersion to ''New-AzSqlInstance'' and ''Set-AzSqlInstance'' +* Bumped SQL SDK version for Az.Network' # Prerelease string of this module # Prerelease = '' diff --git a/src/Sql/Sql/ChangeLog.md b/src/Sql/Sql/ChangeLog.md index 8a0ad13a1e0b..cb8d51ac5aad 100644 --- a/src/Sql/Sql/ChangeLog.md +++ b/src/Sql/Sql/ChangeLog.md @@ -18,14 +18,16 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 2.4.0 * Added PublicNetworkAccess to `New-AzSqlServer` and `Set-AzSqlServer` * Added support for Long Term Retention backup configuration for Managed Databases - Get/Set LTR policy on a managed database - Get LTR backup(s) by managed database, managed instance, or by location - Remove an LTR backup - Restore an LTR backup to create a new managed database -* Added MinimalTlsVersion to New-AzSqlServer and Set-AzSqlServer -* Added MinimalTlsVersion to New-AzSqlInstance and Set-AzSqlInstance +* Added MinimalTlsVersion to `New-AzSqlServer` and `Set-AzSqlServer` +* Added MinimalTlsVersion to `New-AzSqlInstance` and `Set-AzSqlInstance` * Bumped SQL SDK version for Az.Network ## Version 2.3.0 diff --git a/tools/Az/Az.psd1 b/tools/Az/Az.psd1 index 1106ef08baef..322ca986a1c7 100644 --- a/tools/Az/Az.psd1 +++ b/tools/Az/Az.psd1 @@ -3,245 +3,266 @@ # # Generated by: Microsoft Corporation # -# Generated on: 3/3/2020 +# Generated on: 3/5/2020 # @{ - # Script module or binary module file associated with this manifest. - # RootModule = '' - - # Version number of this module. - ModuleVersion = '3.6.0' - - # Supported PSEditions - CompatiblePSEditions = 'Core', 'Desktop' - - # ID used to uniquely identify this module - GUID = 'd48d710e-85cb-46a1-990f-22dae76f6b5f' - - # Author of this module - Author = 'Microsoft Corporation' - - # Company or vendor of this module - CompanyName = 'Microsoft Corporation' - - # Copyright statement for this module - Copyright = 'Microsoft Corporation. All rights reserved.' - - # Description of the functionality provided by this module - Description = 'Microsoft Azure PowerShell - Cmdlets to manage resources in Azure. This module is compatible with WindowsPowerShell and PowerShell Core. +# Script module or binary module file associated with this manifest. +# RootModule = '' + +# Version number of this module. +ModuleVersion = '3.6.0' + +# Supported PSEditions +CompatiblePSEditions = 'Core', 'Desktop' + +# ID used to uniquely identify this module +GUID = 'd48d710e-85cb-46a1-990f-22dae76f6b5f' + +# Author of this module +Author = 'Microsoft Corporation' + +# Company or vendor of this module +CompanyName = 'Microsoft Corporation' + +# Copyright statement for this module +Copyright = 'Microsoft Corporation. All rights reserved.' + +# Description of the functionality provided by this module +Description = 'Microsoft Azure PowerShell - Cmdlets to manage resources in Azure. This module is compatible with WindowsPowerShell and PowerShell Core. For more information about the Az module, please visit the following: https://docs.microsoft.com/en-us/powershell/azure/' - - # Minimum version of the PowerShell engine required by this module - PowerShellVersion = '5.1' - - # Name of the PowerShell host required by this module - # PowerShellHostName = '' - - # Minimum version of the PowerShell host required by this module - # PowerShellHostVersion = '' - - # Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only. - DotNetFrameworkVersion = '4.7.2' - - # Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. - # CLRVersion = '' - - # Processor architecture (None, X86, Amd64) required by this module - # ProcessorArchitecture = '' - - # Modules that must be imported into the global environment prior to importing this module - RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }, - @{ModuleName = 'Az.Advisor'; RequiredVersion = '1.1.1'; }, - @{ModuleName = 'Az.Aks'; RequiredVersion = '1.0.3'; }, - @{ModuleName = 'Az.AnalysisServices'; RequiredVersion = '1.1.2'; }, - @{ModuleName = 'Az.ApiManagement'; RequiredVersion = '1.4.0'; }, - @{ModuleName = 'Az.ApplicationInsights'; RequiredVersion = '1.0.3'; }, - @{ModuleName = 'Az.Automation'; RequiredVersion = '1.3.6'; }, - @{ModuleName = 'Az.Batch'; RequiredVersion = '2.0.2'; }, - @{ModuleName = 'Az.Billing'; RequiredVersion = '1.0.2'; }, - @{ModuleName = 'Az.Cdn'; RequiredVersion = '1.4.2'; }, - @{ModuleName = 'Az.CognitiveServices'; RequiredVersion = '1.2.3'; }, - @{ModuleName = 'Az.Compute'; RequiredVersion = '3.5.0'; }, - @{ModuleName = 'Az.ContainerInstance'; RequiredVersion = '1.0.3'; }, - @{ModuleName = 'Az.ContainerRegistry'; RequiredVersion = '1.1.1'; }, - @{ModuleName = 'Az.DataBoxEdge'; RequiredVersion = '1.1.0'; }, - @{ModuleName = 'Az.DataFactory'; RequiredVersion = '1.6.1'; }, - @{ModuleName = 'Az.DataLakeAnalytics'; RequiredVersion = '1.0.2'; }, - @{ModuleName = 'Az.DataLakeStore'; RequiredVersion = '1.2.7'; }, - @{ModuleName = 'Az.DeploymentManager'; RequiredVersion = '1.1.0'; }, - @{ModuleName = 'Az.DevTestLabs'; RequiredVersion = '1.0.2'; }, - @{ModuleName = 'Az.Dns'; RequiredVersion = '1.1.2'; }, - @{ModuleName = 'Az.EventGrid'; RequiredVersion = '1.2.3'; }, - @{ModuleName = 'Az.EventHub'; RequiredVersion = '1.4.3'; }, - @{ModuleName = 'Az.FrontDoor'; RequiredVersion = '1.4.0'; }, - @{ModuleName = 'Az.HDInsight'; RequiredVersion = '3.0.3'; }, - @{ModuleName = 'Az.HealthcareApis'; RequiredVersion = '1.0.1'; }, - @{ModuleName = 'Az.IotHub'; RequiredVersion = '2.2.0'; }, - @{ModuleName = 'Az.KeyVault'; RequiredVersion = '1.5.1'; }, - @{ModuleName = 'Az.LogicApp'; RequiredVersion = '1.3.2'; }, - @{ModuleName = 'Az.MachineLearning'; RequiredVersion = '1.1.3'; }, - @{ModuleName = 'Az.ManagedServices'; RequiredVersion = '1.0.2'; }, - @{ModuleName = 'Az.MarketplaceOrdering'; RequiredVersion = '1.0.2'; }, - @{ModuleName = 'Az.Media'; RequiredVersion = '1.1.1'; }, - @{ModuleName = 'Az.Monitor'; RequiredVersion = '1.6.1'; }, - @{ModuleName = 'Az.Network'; RequiredVersion = '2.3.2'; }, - @{ModuleName = 'Az.NotificationHubs'; RequiredVersion = '1.1.1'; }, - @{ModuleName = 'Az.OperationalInsights'; RequiredVersion = '1.3.4'; }, - @{ModuleName = 'Az.PolicyInsights'; RequiredVersion = '1.2.0'; }, - @{ModuleName = 'Az.PowerBIEmbedded'; RequiredVersion = '1.1.1'; }, - @{ModuleName = 'Az.PrivateDns'; RequiredVersion = '1.0.2'; }, - @{ModuleName = 'Az.RecoveryServices'; RequiredVersion = '2.7.0'; }, - @{ModuleName = 'Az.RedisCache'; RequiredVersion = '1.2.1'; }, - @{ModuleName = 'Az.Relay'; RequiredVersion = '1.0.3'; }, - @{ModuleName = 'Az.Resources'; RequiredVersion = '1.12.0'; }, - @{ModuleName = 'Az.ServiceBus'; RequiredVersion = '1.4.1'; }, - @{ModuleName = 'Az.ServiceFabric'; RequiredVersion = '2.0.1'; }, - @{ModuleName = 'Az.SignalR'; RequiredVersion = '1.1.1'; }, - @{ModuleName = 'Az.Sql'; RequiredVersion = '2.4.0'; }, - @{ModuleName = 'Az.SqlVirtualMachine'; RequiredVersion = '1.1.0'; }, - @{ModuleName = 'Az.Storage'; RequiredVersion = '1.13.0'; }, - @{ModuleName = 'Az.StorageSync'; RequiredVersion = '1.2.3'; }, - @{ModuleName = 'Az.StreamAnalytics'; RequiredVersion = '1.0.1'; }, - @{ModuleName = 'Az.TrafficManager'; RequiredVersion = '1.0.3'; }, - @{ModuleName = 'Az.Websites'; RequiredVersion = '1.7.0'; }) - - # Assemblies that must be loaded prior to importing this module - # RequiredAssemblies = @() - - # Script files (.ps1) that are run in the caller's environment prior to importing this module. - # ScriptsToProcess = @() - - # Type files (.ps1xml) to be loaded when importing this module - # TypesToProcess = @() - - # Format files (.ps1xml) to be loaded when importing this module - # FormatsToProcess = @() - - # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess - # NestedModules = @() - - # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. - FunctionsToExport = @() - - # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. - CmdletsToExport = @() - - # Variables to export from this module - # VariablesToExport = @() - - # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. - AliasesToExport = @() - - # DSC resources to export from this module - # DscResourcesToExport = @() - - # List of all modules packaged with this module - # ModuleList = @() - - # List of all files packaged with this module - # FileList = @() - - # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. - PrivateData = @{ - - PSData = @{ - - # Tags applied to this module. These help with module discovery in online galleries. - Tags = 'Azure','ARM','ResourceManager','Linux','AzureAutomationNotSupported' - - # A URL to the license for this module. - LicenseUri = 'https://aka.ms/azps-license' - - # A URL to the main website for this project. - ProjectUri = 'https://github.com/Azure/azure-powershell' - - # A URL to an icon representing this module. - # IconUri = '' - - # ReleaseNotes of this module - ReleaseNotes = '3.6.0 - March 2020 - Az.Accounts - * Open Azure PowerShell survey page in ''Send-Feedback'' [#11020] - * Display Azure PowerShell survey URL in ''Resolve-Error'' [#11021] - * Added Az version in UserAgent - Az.ApiManagement - * Added support for retrieving and configuring Custom Domain on the DeveloperPortal Endpoint [#11007] - * ''Export-AzApiManagementApi'' Added support for downloading Api Definition in Json format [#9987] - * ''Import-AzApiManagementApi'' Added support for importing OpenApi 3.0 definition from Json document - * ''New-AzApiManagementIdentityProvider'' and ''Set-AzApiManagementIdentityProvider'' Added support for configuring ''Signin Tenant'' for AAD B2C Provider [#9784] - Az.DataLakeStore - * Added reference to System.Buffers explicitly in csproj and psd1. - Az.IotHub - * Added support to manage devices in an Iot Hub. New Cmdlets are: - - ''Add-AzIotHubDevice'' - - ''Get-AzIotHubDevice'' - - ''Remove-AzIotHubDevice'' - - ''Set-AzIotHubDevice'' - * Added support to manage modules on a target Iot device in an Iot Hub. New Cmdlets are: - - ''Add-AzIotHubModule'' - - ''Get-AzIotHubModule'' - - ''Remove-AzIotHubModule'' - - ''Set-AzIotHubModule'' - * Added cmdlet to get the connection string of a target IoT device in an Iot Hub. - * Added cmdlet to get the connection string of a module on a target IoT device in an Iot Hub. - * Added support to get/set parent device of an IoT device. New Cmdlets are: - - ''Get-AzIotHubDeviceParent'' - - ''Set-AzIotHubDeviceParent'' - * Added support to manage device parent-child relationship. - Az.Monitor - * Fixed output value for ''Get-AzMetricDefinition'' [#9714] - Az.Network - * Updated Sql Management SDK. - Az.Resources - * Fixed for null reference bug in ''Get-AzRoleAssignment'' - * Marked switch ''-Force'' and ''-PassThru'' optional in ''Remove-AzADGroup'' [#10849] - * Fixed issue that ''MailNickname'' doesn''t return in ''Remove-AzADGroup'' [#11167] - * Fixed issue that ''Remove-AzADGroup'' pipe operation doesn''t work [#11171] - * Fixed for null reference bug in GetAzureRoleAssignmentCommand - * Added breaking change attributes for upcoming changes to policy cmdlets - * Updated ''Get-AzResourceGroup'' to perform resource group tag filtering on server-side - * Extended Tag cmdlets to accept -ResourceId - - Get-AzTag -ResourceId - - New-AzTag -ResourceId - - Remove-AzTag -ResourceId - * Added new Tag cmdlet - - Update-AzTag -ResourceId - * Brought ScopedDeployment from SDK 3.3.0 - Az.Sql - * Added PublicNetworkAccess to New-AzSqlServer and Set-AzSqlServer - Az.Storage - * Supported AllowProtectedAppendWrite in ImmutabilityPolicy - - ''Set-AzRmStorageContainerImmutabilityPolicy'' - * Added breaking change warning message for AzureStorageTable type change in a future release - - ''New-AzStorageTable'' - - ''Get-AzStorageTable'' - Az.Websites - * Added Tag parameter for ''New-AzAppServicePlan'' and ''Set-AzAppServicePlan'' - * Stop cmdlt execution if an exception is thrown when adding a custom domain to a website - * Added support to perform operations for App Services not in the same resource group as the App Service Plan - * Applied access restriction to WebApp/Function in different resource groups - * Fixed issue to set custom hostnames for WebAppSlots - ' - - # Prerelease string of this module - # Prerelease = '' - - # Flag to indicate whether the module requires explicit user acceptance for install/update/save - # RequireLicenseAcceptance = $false - - # External dependent modules of this module - # ExternalModuleDependencies = @() - - } # End of PSData hashtable - - } # End of PrivateData hashtable - - # HelpInfo URI of this module - # HelpInfoURI = '' - - # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. - # DefaultCommandPrefix = '' - - } \ No newline at end of file + +# Minimum version of the PowerShell engine required by this module +PowerShellVersion = '5.1' + +# Name of the PowerShell host required by this module +# PowerShellHostName = '' + +# Minimum version of the PowerShell host required by this module +# PowerShellHostVersion = '' + +# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only. +DotNetFrameworkVersion = '4.7.2' + +# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. +# CLRVersion = '' + +# Processor architecture (None, X86, Amd64) required by this module +# ProcessorArchitecture = '' + +# Modules that must be imported into the global environment prior to importing this module +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; }, + @{ModuleName = 'Az.Advisor'; RequiredVersion = '1.1.1'; }, + @{ModuleName = 'Az.Aks'; RequiredVersion = '1.0.3'; }, + @{ModuleName = 'Az.AnalysisServices'; RequiredVersion = '1.1.2'; }, + @{ModuleName = 'Az.ApiManagement'; RequiredVersion = '1.4.0'; }, + @{ModuleName = 'Az.ApplicationInsights'; RequiredVersion = '1.0.3'; }, + @{ModuleName = 'Az.Automation'; RequiredVersion = '1.3.6'; }, + @{ModuleName = 'Az.Batch'; RequiredVersion = '2.0.2'; }, + @{ModuleName = 'Az.Billing'; RequiredVersion = '1.0.2'; }, + @{ModuleName = 'Az.Cdn'; RequiredVersion = '1.4.2'; }, + @{ModuleName = 'Az.CognitiveServices'; RequiredVersion = '1.2.3'; }, + @{ModuleName = 'Az.Compute'; RequiredVersion = '3.5.0'; }, + @{ModuleName = 'Az.ContainerInstance'; RequiredVersion = '1.0.3'; }, + @{ModuleName = 'Az.ContainerRegistry'; RequiredVersion = '1.1.1'; }, + @{ModuleName = 'Az.DataBoxEdge'; RequiredVersion = '1.1.0'; }, + @{ModuleName = 'Az.DataFactory'; RequiredVersion = '1.6.1'; }, + @{ModuleName = 'Az.DataLakeAnalytics'; RequiredVersion = '1.0.2'; }, + @{ModuleName = 'Az.DataLakeStore'; RequiredVersion = '1.2.7'; }, + @{ModuleName = 'Az.DeploymentManager'; RequiredVersion = '1.1.0'; }, + @{ModuleName = 'Az.DevTestLabs'; RequiredVersion = '1.0.2'; }, + @{ModuleName = 'Az.Dns'; RequiredVersion = '1.1.2'; }, + @{ModuleName = 'Az.EventGrid'; RequiredVersion = '1.2.3'; }, + @{ModuleName = 'Az.EventHub'; RequiredVersion = '1.4.3'; }, + @{ModuleName = 'Az.FrontDoor'; RequiredVersion = '1.4.0'; }, + @{ModuleName = 'Az.HDInsight'; RequiredVersion = '3.0.3'; }, + @{ModuleName = 'Az.HealthcareApis'; RequiredVersion = '1.0.1'; }, + @{ModuleName = 'Az.IotHub'; RequiredVersion = '2.2.0'; }, + @{ModuleName = 'Az.KeyVault'; RequiredVersion = '1.5.1'; }, + @{ModuleName = 'Az.LogicApp'; RequiredVersion = '1.3.2'; }, + @{ModuleName = 'Az.MachineLearning'; RequiredVersion = '1.1.3'; }, + @{ModuleName = 'Az.ManagedServices'; RequiredVersion = '1.0.2'; }, + @{ModuleName = 'Az.MarketplaceOrdering'; RequiredVersion = '1.0.2'; }, + @{ModuleName = 'Az.Media'; RequiredVersion = '1.1.1'; }, + @{ModuleName = 'Az.Monitor'; RequiredVersion = '1.6.1'; }, + @{ModuleName = 'Az.Network'; RequiredVersion = '2.3.2'; }, + @{ModuleName = 'Az.NotificationHubs'; RequiredVersion = '1.1.1'; }, + @{ModuleName = 'Az.OperationalInsights'; RequiredVersion = '1.3.4'; }, + @{ModuleName = 'Az.PolicyInsights'; RequiredVersion = '1.2.0'; }, + @{ModuleName = 'Az.PowerBIEmbedded'; RequiredVersion = '1.1.1'; }, + @{ModuleName = 'Az.PrivateDns'; RequiredVersion = '1.0.2'; }, + @{ModuleName = 'Az.RecoveryServices'; RequiredVersion = '2.7.0'; }, + @{ModuleName = 'Az.RedisCache'; RequiredVersion = '1.2.1'; }, + @{ModuleName = 'Az.Relay'; RequiredVersion = '1.0.3'; }, + @{ModuleName = 'Az.Resources'; RequiredVersion = '1.12.0'; }, + @{ModuleName = 'Az.ServiceBus'; RequiredVersion = '1.4.1'; }, + @{ModuleName = 'Az.ServiceFabric'; RequiredVersion = '2.0.1'; }, + @{ModuleName = 'Az.SignalR'; RequiredVersion = '1.1.1'; }, + @{ModuleName = 'Az.Sql'; RequiredVersion = '2.4.0'; }, + @{ModuleName = 'Az.SqlVirtualMachine'; RequiredVersion = '1.1.0'; }, + @{ModuleName = 'Az.Storage'; RequiredVersion = '1.13.0'; }, + @{ModuleName = 'Az.StorageSync'; RequiredVersion = '1.2.3'; }, + @{ModuleName = 'Az.StreamAnalytics'; RequiredVersion = '1.0.1'; }, + @{ModuleName = 'Az.TrafficManager'; RequiredVersion = '1.0.3'; }, + @{ModuleName = 'Az.Websites'; RequiredVersion = '1.7.0'; }) + +# Assemblies that must be loaded prior to importing this module +# RequiredAssemblies = @() + +# Script files (.ps1) that are run in the caller's environment prior to importing this module. +# ScriptsToProcess = @() + +# Type files (.ps1xml) to be loaded when importing this module +# TypesToProcess = @() + +# Format files (.ps1xml) to be loaded when importing this module +# FormatsToProcess = @() + +# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess +# NestedModules = @() + +# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. +FunctionsToExport = @() + +# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. +CmdletsToExport = @() + +# Variables to export from this module +# VariablesToExport = @() + +# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. +AliasesToExport = @() + +# DSC resources to export from this module +# DscResourcesToExport = @() + +# List of all modules packaged with this module +# ModuleList = @() + +# List of all files packaged with this module +# FileList = @() + +# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. +PrivateData = @{ + + PSData = @{ + + # Tags applied to this module. These help with module discovery in online galleries. + Tags = 'Azure','ARM','ResourceManager','Linux','AzureAutomationNotSupported' + + # A URL to the license for this module. + LicenseUri = 'https://aka.ms/azps-license' + + # A URL to the main website for this project. + ProjectUri = 'https://github.com/Azure/azure-powershell' + + # A URL to an icon representing this module. + # IconUri = '' + + # ReleaseNotes of this module + ReleaseNotes = '3.7.0 - March 2020 +Az.Accounts +* Open Azure PowerShell survey page in ''Send-Feedback'' [#11020] +* Display Azure PowerShell survey URL in ''Resolve-Error'' [#11021] +* Added Az version in UserAgent + +Az.ApiManagement +* Added support for retrieving and configuring Custom Domain on the DeveloperPortal Endpoint [#11007] +* ''Export-AzApiManagementApi'' Added support for downloading Api Definition in Json format [#9987] +* ''Import-AzApiManagementApi'' Added support for importing OpenApi 3.0 definition from Json document +* ''New-AzApiManagementIdentityProvider'' and ''Set-AzApiManagementIdentityProvider'' Added support for configuring ''Signin Tenant'' for AAD B2C Provider [#9784] + +Az.DataLakeStore +* Added reference to System.Buffers explicitly in csproj and psd1. + +Az.IotHub +* Added support to manage devices in an Iot Hub. New Cmdlets are: + - ''Add-AzIotHubDevice'' + - ''Get-AzIotHubDevice'' + - ''Remove-AzIotHubDevice'' + - ''Set-AzIotHubDevice'' +* Added support to manage modules on a target Iot device in an Iot Hub. New Cmdlets are: + - ''Add-AzIotHubModule'' + - ''Get-AzIotHubModule'' + - ''Remove-AzIotHubModule'' + - ''Set-AzIotHubModule'' +* Added cmdlet to get the connection string of a target IoT device in an Iot Hub. +* Added cmdlet to get the connection string of a module on a target IoT device in an Iot Hub. +* Added support to get/set parent device of an IoT device. New Cmdlets are: + - ''Get-AzIotHubDeviceParent'' + - ''Set-AzIotHubDeviceParent'' +* Added support to manage device parent-child relationship. + +Az.Monitor +* Fixed output value for ''Get-AzMetricDefinition'' [#9714] + +Az.Network +* Updated Sql Management SDK. +* Fixed a naming-difference issue in PrivateLinkServiceConnectionState class. + - Mapping the field ActionsRequired to ActionRequired. +* Added PublicNetworkAccess to ''New-AzSqlServer'' and ''Set-AzSqlServer'' + +Az.Resources +* Fixed for null reference bug in ''Get-AzRoleAssignment'' +* Marked switch ''-Force'' and ''-PassThru'' optional in ''Remove-AzADGroup'' [#10849] +* Fixed issue that ''MailNickname'' doesn''t return in ''Remove-AzADGroup'' [#11167] +* Fixed issue that ''Remove-AzADGroup'' pipe operation doesn''t work [#11171] +* Fixed for null reference bug in GetAzureRoleAssignmentCommand +* Added breaking change attributes for upcoming changes to policy cmdlets +* Updated ''Get-AzResourceGroup'' to perform resource group tag filtering on server-side +* Extended Tag cmdlets to accept -ResourceId + - Get-AzTag -ResourceId + - New-AzTag -ResourceId + - Remove-AzTag -ResourceId +* Added new Tag cmdlet + - Update-AzTag -ResourceId +* Brought ScopedDeployment from SDK 3.3.0 + +Az.Sql +* Added PublicNetworkAccess to ''New-AzSqlServer'' and ''Set-AzSqlServer'' +* Added support for Long Term Retention backup configuration for Managed Databases + - Get/Set LTR policy on a managed database + - Get LTR backup(s) by managed database, managed instance, or by location + - Remove an LTR backup + - Restore an LTR backup to create a new managed database +* Added MinimalTlsVersion to ''New-AzSqlServer'' and ''Set-AzSqlServer'' +* Added MinimalTlsVersion to ''New-AzSqlInstance'' and ''Set-AzSqlInstance'' +* Bumped SQL SDK version for Az.Network + +Az.Storage +* Supported AllowProtectedAppendWrite in ImmutabilityPolicy + - ''Set-AzRmStorageContainerImmutabilityPolicy'' +* Added breaking change warning message for AzureStorageTable type change in a future release + - ''New-AzStorageTable'' + - ''Get-AzStorageTable'' + +Az.Websites +* Added Tag parameter for ''New-AzAppServicePlan'' and ''Set-AzAppServicePlan'' +* Stop cmdlt execution if an exception is thrown when adding a custom domain to a website +* Added support to perform operations for App Services not in the same resource group as the App Service Plan +* Applied access restriction to WebApp/Function in different resource groups +* Fixed issue to set custom hostnames for WebAppSlots +' + + # Prerelease string of this module + # Prerelease = '' + + # Flag to indicate whether the module requires explicit user acceptance for install/update/save + # RequireLicenseAcceptance = $false + + # External dependent modules of this module + # ExternalModuleDependencies = @() + + } # End of PSData hashtable + + } # End of PrivateData hashtable + +# HelpInfo URI of this module +# HelpInfoURI = '' + +# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. +# DefaultCommandPrefix = '' + +} + diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Sql.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Sql.dll.json index 44908180a953..9f27a9dd6805 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Sql.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Sql.dll.json @@ -3099,9 +3099,10 @@ "Name": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", + "LongTermRetentionBackupResourceId": "System.String", "RestorableDroppedDatabaseId": "System.String", "RecoverableDatabaseId": "System.String", - "FailoverGroupId": "System.String", + "SourceDatabaseId": "System.String", "StorageContainerSasToken": "System.String", "StorageContainerUri": "System.String", "CreateMode": "System.String", @@ -3109,7 +3110,7 @@ "DefaultSecondaryLocation": "System.String", "Status": "System.String", "Collation": "System.String", - "SourceDatabaseId": "System.String", + "FailoverGroupId": "System.String", "Id": "System.String" }, "ElementType": null, @@ -3361,9 +3362,10 @@ "Name": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", + "LongTermRetentionBackupResourceId": "System.String", "RestorableDroppedDatabaseId": "System.String", "RecoverableDatabaseId": "System.String", - "FailoverGroupId": "System.String", + "SourceDatabaseId": "System.String", "StorageContainerSasToken": "System.String", "StorageContainerUri": "System.String", "CreateMode": "System.String", @@ -3371,7 +3373,7 @@ "DefaultSecondaryLocation": "System.String", "Status": "System.String", "Collation": "System.String", - "SourceDatabaseId": "System.String", + "FailoverGroupId": "System.String", "Id": "System.String" }, "ElementType": null, @@ -3713,9 +3715,10 @@ "Name": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", + "LongTermRetentionBackupResourceId": "System.String", "RestorableDroppedDatabaseId": "System.String", "RecoverableDatabaseId": "System.String", - "FailoverGroupId": "System.String", + "SourceDatabaseId": "System.String", "StorageContainerSasToken": "System.String", "StorageContainerUri": "System.String", "CreateMode": "System.String", @@ -3723,7 +3726,7 @@ "DefaultSecondaryLocation": "System.String", "Status": "System.String", "Collation": "System.String", - "SourceDatabaseId": "System.String", + "FailoverGroupId": "System.String", "Id": "System.String" }, "ElementType": null, @@ -3975,9 +3978,10 @@ "Name": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", + "LongTermRetentionBackupResourceId": "System.String", "RestorableDroppedDatabaseId": "System.String", "RecoverableDatabaseId": "System.String", - "FailoverGroupId": "System.String", + "SourceDatabaseId": "System.String", "StorageContainerSasToken": "System.String", "StorageContainerUri": "System.String", "CreateMode": "System.String", @@ -3985,7 +3989,7 @@ "DefaultSecondaryLocation": "System.String", "Status": "System.String", "Collation": "System.String", - "SourceDatabaseId": "System.String", + "FailoverGroupId": "System.String", "Id": "System.String" }, "ElementType": null, @@ -5987,19 +5991,20 @@ "VCores": "System.Nullable`1[System.Int32]", "AdministratorPassword": "System.Security.SecureString", "Location": "System.String", + "DnsZone": "System.String", "DnsZonePartner": "System.String", "TimezoneId": "System.String", "ProxyOverride": "System.String", "Collation": "System.String", "SubnetId": "System.String", - "DnsZone": "System.String", + "InstancePoolName": "System.String", "AdministratorLogin": "System.String", "FullyQualifiedDomainName": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", "Id": "System.String", "LicenseType": "System.String", - "InstancePoolName": "System.String" + "MinimalTlsVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -6190,19 +6195,20 @@ "VCores": "System.Nullable`1[System.Int32]", "AdministratorPassword": "System.Security.SecureString", "Location": "System.String", + "DnsZone": "System.String", "DnsZonePartner": "System.String", "TimezoneId": "System.String", "ProxyOverride": "System.String", "Collation": "System.String", "SubnetId": "System.String", - "DnsZone": "System.String", + "InstancePoolName": "System.String", "AdministratorLogin": "System.String", "FullyQualifiedDomainName": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", "Id": "System.String", "LicenseType": "System.String", - "InstancePoolName": "System.String" + "MinimalTlsVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -6472,19 +6478,20 @@ "VCores": "System.Nullable`1[System.Int32]", "AdministratorPassword": "System.Security.SecureString", "Location": "System.String", + "DnsZone": "System.String", "DnsZonePartner": "System.String", "TimezoneId": "System.String", "ProxyOverride": "System.String", "Collation": "System.String", "SubnetId": "System.String", - "DnsZone": "System.String", + "InstancePoolName": "System.String", "AdministratorLogin": "System.String", "FullyQualifiedDomainName": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", "Id": "System.String", "LicenseType": "System.String", - "InstancePoolName": "System.String" + "MinimalTlsVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -6675,19 +6682,20 @@ "VCores": "System.Nullable`1[System.Int32]", "AdministratorPassword": "System.Security.SecureString", "Location": "System.String", + "DnsZone": "System.String", "DnsZonePartner": "System.String", "TimezoneId": "System.String", "ProxyOverride": "System.String", "Collation": "System.String", "SubnetId": "System.String", - "DnsZone": "System.String", + "InstancePoolName": "System.String", "AdministratorLogin": "System.String", "FullyQualifiedDomainName": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", "Id": "System.String", "LicenseType": "System.String", - "InstancePoolName": "System.String" + "MinimalTlsVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -8409,6 +8417,7 @@ "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", "ResourceId": "System.String", + "MinimalTlsVersion": "System.String", "PublicNetworkAccess": "System.String" }, "ElementType": null, @@ -8602,6 +8611,7 @@ "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", "ResourceId": "System.String", + "MinimalTlsVersion": "System.String", "PublicNetworkAccess": "System.String" }, "ElementType": null, @@ -8874,6 +8884,7 @@ "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", "ResourceId": "System.String", + "MinimalTlsVersion": "System.String", "PublicNetworkAccess": "System.String" }, "ElementType": null, @@ -9067,6 +9078,7 @@ "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", "ResourceId": "System.String", + "MinimalTlsVersion": "System.String", "PublicNetworkAccess": "System.String" }, "ElementType": null, @@ -13517,9 +13529,10 @@ "Name": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", + "LongTermRetentionBackupResourceId": "System.String", "RestorableDroppedDatabaseId": "System.String", "RecoverableDatabaseId": "System.String", - "FailoverGroupId": "System.String", + "SourceDatabaseId": "System.String", "StorageContainerSasToken": "System.String", "StorageContainerUri": "System.String", "CreateMode": "System.String", @@ -13527,7 +13540,7 @@ "DefaultSecondaryLocation": "System.String", "Status": "System.String", "Collation": "System.String", - "SourceDatabaseId": "System.String", + "FailoverGroupId": "System.String", "Id": "System.String" }, "ElementType": null, @@ -13821,9 +13834,10 @@ "Name": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", + "LongTermRetentionBackupResourceId": "System.String", "RestorableDroppedDatabaseId": "System.String", "RecoverableDatabaseId": "System.String", - "FailoverGroupId": "System.String", + "SourceDatabaseId": "System.String", "StorageContainerSasToken": "System.String", "StorageContainerUri": "System.String", "CreateMode": "System.String", @@ -13831,7 +13845,7 @@ "DefaultSecondaryLocation": "System.String", "Status": "System.String", "Collation": "System.String", - "SourceDatabaseId": "System.String", + "FailoverGroupId": "System.String", "Id": "System.String" }, "ElementType": null, @@ -14219,9 +14233,10 @@ "Name": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", + "LongTermRetentionBackupResourceId": "System.String", "RestorableDroppedDatabaseId": "System.String", "RecoverableDatabaseId": "System.String", - "FailoverGroupId": "System.String", + "SourceDatabaseId": "System.String", "StorageContainerSasToken": "System.String", "StorageContainerUri": "System.String", "CreateMode": "System.String", @@ -14229,7 +14244,7 @@ "DefaultSecondaryLocation": "System.String", "Status": "System.String", "Collation": "System.String", - "SourceDatabaseId": "System.String", + "FailoverGroupId": "System.String", "Id": "System.String" }, "ElementType": null, @@ -14565,9 +14580,10 @@ "Name": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", + "LongTermRetentionBackupResourceId": "System.String", "RestorableDroppedDatabaseId": "System.String", "RecoverableDatabaseId": "System.String", - "FailoverGroupId": "System.String", + "SourceDatabaseId": "System.String", "StorageContainerSasToken": "System.String", "StorageContainerUri": "System.String", "CreateMode": "System.String", @@ -14575,7 +14591,7 @@ "DefaultSecondaryLocation": "System.String", "Status": "System.String", "Collation": "System.String", - "SourceDatabaseId": "System.String", + "FailoverGroupId": "System.String", "Id": "System.String" }, "ElementType": null, @@ -17269,9 +17285,10 @@ "Name": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", + "LongTermRetentionBackupResourceId": "System.String", "RestorableDroppedDatabaseId": "System.String", "RecoverableDatabaseId": "System.String", - "FailoverGroupId": "System.String", + "SourceDatabaseId": "System.String", "StorageContainerSasToken": "System.String", "StorageContainerUri": "System.String", "CreateMode": "System.String", @@ -17279,7 +17296,7 @@ "DefaultSecondaryLocation": "System.String", "Status": "System.String", "Collation": "System.String", - "SourceDatabaseId": "System.String", + "FailoverGroupId": "System.String", "Id": "System.String" }, "ElementType": null, @@ -17615,9 +17632,10 @@ "Name": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", + "LongTermRetentionBackupResourceId": "System.String", "RestorableDroppedDatabaseId": "System.String", "RecoverableDatabaseId": "System.String", - "FailoverGroupId": "System.String", + "SourceDatabaseId": "System.String", "StorageContainerSasToken": "System.String", "StorageContainerUri": "System.String", "CreateMode": "System.String", @@ -17625,7 +17643,7 @@ "DefaultSecondaryLocation": "System.String", "Status": "System.String", "Collation": "System.String", - "SourceDatabaseId": "System.String", + "FailoverGroupId": "System.String", "Id": "System.String" }, "ElementType": null, @@ -18056,9 +18074,10 @@ "Name": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", + "LongTermRetentionBackupResourceId": "System.String", "RestorableDroppedDatabaseId": "System.String", "RecoverableDatabaseId": "System.String", - "FailoverGroupId": "System.String", + "SourceDatabaseId": "System.String", "StorageContainerSasToken": "System.String", "StorageContainerUri": "System.String", "CreateMode": "System.String", @@ -18066,7 +18085,7 @@ "DefaultSecondaryLocation": "System.String", "Status": "System.String", "Collation": "System.String", - "SourceDatabaseId": "System.String", + "FailoverGroupId": "System.String", "Id": "System.String" }, "ElementType": null, @@ -18402,9 +18421,10 @@ "Name": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", + "LongTermRetentionBackupResourceId": "System.String", "RestorableDroppedDatabaseId": "System.String", "RecoverableDatabaseId": "System.String", - "FailoverGroupId": "System.String", + "SourceDatabaseId": "System.String", "StorageContainerSasToken": "System.String", "StorageContainerUri": "System.String", "CreateMode": "System.String", @@ -18412,7 +18432,7 @@ "DefaultSecondaryLocation": "System.String", "Status": "System.String", "Collation": "System.String", - "SourceDatabaseId": "System.String", + "FailoverGroupId": "System.String", "Id": "System.String" }, "ElementType": null, @@ -22770,19 +22790,20 @@ "VCores": "System.Nullable`1[System.Int32]", "AdministratorPassword": "System.Security.SecureString", "Location": "System.String", + "DnsZone": "System.String", "DnsZonePartner": "System.String", "TimezoneId": "System.String", "ProxyOverride": "System.String", "Collation": "System.String", "SubnetId": "System.String", - "DnsZone": "System.String", + "InstancePoolName": "System.String", "AdministratorLogin": "System.String", "FullyQualifiedDomainName": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", "Id": "System.String", "LicenseType": "System.String", - "InstancePoolName": "System.String" + "MinimalTlsVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -22957,19 +22978,20 @@ "VCores": "System.Nullable`1[System.Int32]", "AdministratorPassword": "System.Security.SecureString", "Location": "System.String", + "DnsZone": "System.String", "DnsZonePartner": "System.String", "TimezoneId": "System.String", "ProxyOverride": "System.String", "Collation": "System.String", "SubnetId": "System.String", - "DnsZone": "System.String", + "InstancePoolName": "System.String", "AdministratorLogin": "System.String", "FullyQualifiedDomainName": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", "Id": "System.String", "LicenseType": "System.String", - "InstancePoolName": "System.String" + "MinimalTlsVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -23790,6 +23812,7 @@ "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", "ResourceId": "System.String", + "MinimalTlsVersion": "System.String", "PublicNetworkAccess": "System.String" }, "ElementType": null, @@ -24049,6 +24072,7 @@ "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", "ResourceId": "System.String", + "MinimalTlsVersion": "System.String", "PublicNetworkAccess": "System.String" }, "ElementType": null, @@ -24652,19 +24676,20 @@ "VCores": "System.Nullable`1[System.Int32]", "AdministratorPassword": "System.Security.SecureString", "Location": "System.String", + "DnsZone": "System.String", "DnsZonePartner": "System.String", "TimezoneId": "System.String", "ProxyOverride": "System.String", "Collation": "System.String", "SubnetId": "System.String", - "DnsZone": "System.String", + "InstancePoolName": "System.String", "AdministratorLogin": "System.String", "FullyQualifiedDomainName": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", "Id": "System.String", "LicenseType": "System.String", - "InstancePoolName": "System.String" + "MinimalTlsVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -24845,19 +24870,20 @@ "VCores": "System.Nullable`1[System.Int32]", "AdministratorPassword": "System.Security.SecureString", "Location": "System.String", + "DnsZone": "System.String", "DnsZonePartner": "System.String", "TimezoneId": "System.String", "ProxyOverride": "System.String", "Collation": "System.String", "SubnetId": "System.String", - "DnsZone": "System.String", + "InstancePoolName": "System.String", "AdministratorLogin": "System.String", "FullyQualifiedDomainName": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", "Id": "System.String", "LicenseType": "System.String", - "InstancePoolName": "System.String" + "MinimalTlsVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -25336,19 +25362,20 @@ "VCores": "System.Nullable`1[System.Int32]", "AdministratorPassword": "System.Security.SecureString", "Location": "System.String", + "DnsZone": "System.String", "DnsZonePartner": "System.String", "TimezoneId": "System.String", "ProxyOverride": "System.String", "Collation": "System.String", "SubnetId": "System.String", - "DnsZone": "System.String", + "InstancePoolName": "System.String", "AdministratorLogin": "System.String", "FullyQualifiedDomainName": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", "Id": "System.String", "LicenseType": "System.String", - "InstancePoolName": "System.String" + "MinimalTlsVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -25505,19 +25532,20 @@ "VCores": "System.Nullable`1[System.Int32]", "AdministratorPassword": "System.Security.SecureString", "Location": "System.String", + "DnsZone": "System.String", "DnsZonePartner": "System.String", "TimezoneId": "System.String", "ProxyOverride": "System.String", "Collation": "System.String", "SubnetId": "System.String", - "DnsZone": "System.String", + "InstancePoolName": "System.String", "AdministratorLogin": "System.String", "FullyQualifiedDomainName": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", "Id": "System.String", "LicenseType": "System.String", - "InstancePoolName": "System.String" + "MinimalTlsVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -26710,19 +26738,20 @@ "VCores": "System.Nullable`1[System.Int32]", "AdministratorPassword": "System.Security.SecureString", "Location": "System.String", + "DnsZone": "System.String", "DnsZonePartner": "System.String", "TimezoneId": "System.String", "ProxyOverride": "System.String", "Collation": "System.String", "SubnetId": "System.String", - "DnsZone": "System.String", + "InstancePoolName": "System.String", "AdministratorLogin": "System.String", "FullyQualifiedDomainName": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", "Id": "System.String", "LicenseType": "System.String", - "InstancePoolName": "System.String" + "MinimalTlsVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -26897,19 +26926,20 @@ "VCores": "System.Nullable`1[System.Int32]", "AdministratorPassword": "System.Security.SecureString", "Location": "System.String", + "DnsZone": "System.String", "DnsZonePartner": "System.String", "TimezoneId": "System.String", "ProxyOverride": "System.String", "Collation": "System.String", "SubnetId": "System.String", - "DnsZone": "System.String", + "InstancePoolName": "System.String", "AdministratorLogin": "System.String", "FullyQualifiedDomainName": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", "Id": "System.String", "LicenseType": "System.String", - "InstancePoolName": "System.String" + "MinimalTlsVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -27551,19 +27581,20 @@ "VCores": "System.Nullable`1[System.Int32]", "AdministratorPassword": "System.Security.SecureString", "Location": "System.String", + "DnsZone": "System.String", "DnsZonePartner": "System.String", "TimezoneId": "System.String", "ProxyOverride": "System.String", "Collation": "System.String", "SubnetId": "System.String", - "DnsZone": "System.String", + "InstancePoolName": "System.String", "AdministratorLogin": "System.String", "FullyQualifiedDomainName": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", "Id": "System.String", "LicenseType": "System.String", - "InstancePoolName": "System.String" + "MinimalTlsVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -27853,19 +27884,20 @@ "VCores": "System.Nullable`1[System.Int32]", "AdministratorPassword": "System.Security.SecureString", "Location": "System.String", + "DnsZone": "System.String", "DnsZonePartner": "System.String", "TimezoneId": "System.String", "ProxyOverride": "System.String", "Collation": "System.String", "SubnetId": "System.String", - "DnsZone": "System.String", + "InstancePoolName": "System.String", "AdministratorLogin": "System.String", "FullyQualifiedDomainName": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", "Id": "System.String", "LicenseType": "System.String", - "InstancePoolName": "System.String" + "MinimalTlsVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -32773,6 +32805,7 @@ "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", "ResourceId": "System.String", + "MinimalTlsVersion": "System.String", "PublicNetworkAccess": "System.String" }, "ElementType": null, @@ -33014,6 +33047,7 @@ "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", "ResourceId": "System.String", + "MinimalTlsVersion": "System.String", "PublicNetworkAccess": "System.String" }, "ElementType": null, @@ -33189,6 +33223,28 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "MinimalTlsVersion", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "1.0", + "1.1", + "1.2" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "AsJob", "AliasList": [], @@ -33435,6 +33491,34 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "MinimalTlsVersion", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "1.0", + "1.1", + "1.2" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "AsJob", @@ -33553,6 +33637,7 @@ "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", "ResourceId": "System.String", + "MinimalTlsVersion": "System.String", "PublicNetworkAccess": "System.String" }, "ElementType": null, @@ -33836,6 +33921,7 @@ "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", "ResourceId": "System.String", + "MinimalTlsVersion": "System.String", "PublicNetworkAccess": "System.String" }, "ElementType": null, @@ -33993,6 +34079,28 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "MinimalTlsVersion", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "1.0", + "1.1", + "1.2" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "Force", "AliasList": [], @@ -34215,6 +34323,34 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "MinimalTlsVersion", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "1.0", + "1.1", + "1.2" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Force", @@ -39999,6 +40135,7 @@ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ObjectId": "System.Guid", + "IsAzureADOnlyAuthentication": "System.Nullable`1[System.Boolean]", "ResourceGroupName": "System.String", "ServerName": "System.String", "DisplayName": "System.String" @@ -40229,6 +40366,7 @@ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ObjectId": "System.Guid", + "IsAzureADOnlyAuthentication": "System.Nullable`1[System.Boolean]", "ResourceGroupName": "System.String", "ServerName": "System.String", "DisplayName": "System.String" @@ -40501,6 +40639,7 @@ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ObjectId": "System.Guid", + "IsAzureADOnlyAuthentication": "System.Nullable`1[System.Boolean]", "ResourceGroupName": "System.String", "ServerName": "System.String", "DisplayName": "System.String" @@ -40584,6 +40723,26 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, + { + "Name": "IsAzureOnlyAuthentication", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.Boolean" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, { "Name": "ServerName", "AliasList": [], @@ -40706,6 +40865,32 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "IsAzureOnlyAuthentication", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.Boolean" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": 4, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "ServerName", @@ -48329,19 +48514,20 @@ "VCores": "System.Nullable`1[System.Int32]", "AdministratorPassword": "System.Security.SecureString", "Location": "System.String", + "DnsZone": "System.String", "DnsZonePartner": "System.String", "TimezoneId": "System.String", "ProxyOverride": "System.String", "Collation": "System.String", "SubnetId": "System.String", - "DnsZone": "System.String", + "InstancePoolName": "System.String", "AdministratorLogin": "System.String", "FullyQualifiedDomainName": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", "Id": "System.String", "LicenseType": "System.String", - "InstancePoolName": "System.String" + "MinimalTlsVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -49086,19 +49272,20 @@ "VCores": "System.Nullable`1[System.Int32]", "AdministratorPassword": "System.Security.SecureString", "Location": "System.String", + "DnsZone": "System.String", "DnsZonePartner": "System.String", "TimezoneId": "System.String", "ProxyOverride": "System.String", "Collation": "System.String", "SubnetId": "System.String", - "DnsZone": "System.String", + "InstancePoolName": "System.String", "AdministratorLogin": "System.String", "FullyQualifiedDomainName": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", "Id": "System.String", "LicenseType": "System.String", - "InstancePoolName": "System.String" + "MinimalTlsVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -49574,6 +49761,29 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "MinimalTlsVersion", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "None", + "1.0", + "1.1", + "1.2" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "AsJob", "AliasList": [], @@ -49969,6 +50179,35 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "MinimalTlsVersion", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "None", + "1.0", + "1.1", + "1.2" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "AsJob", @@ -50331,6 +50570,35 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "MinimalTlsVersion", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "None", + "1.0", + "1.1", + "1.2" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "AsJob", @@ -50811,6 +51079,35 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "MinimalTlsVersion", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "None", + "1.0", + "1.1", + "1.2" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "AsJob", @@ -51315,6 +51612,35 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "MinimalTlsVersion", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "None", + "1.0", + "1.1", + "1.2" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "AsJob", @@ -51625,6 +51951,35 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "MinimalTlsVersion", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "None", + "1.0", + "1.1", + "1.2" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "AsJob", @@ -51717,19 +52072,20 @@ "VCores": "System.Nullable`1[System.Int32]", "AdministratorPassword": "System.Security.SecureString", "Location": "System.String", + "DnsZone": "System.String", "DnsZonePartner": "System.String", "TimezoneId": "System.String", "ProxyOverride": "System.String", "Collation": "System.String", "SubnetId": "System.String", - "DnsZone": "System.String", + "InstancePoolName": "System.String", "AdministratorLogin": "System.String", "FullyQualifiedDomainName": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", "Id": "System.String", "LicenseType": "System.String", - "InstancePoolName": "System.String" + "MinimalTlsVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -51830,19 +52186,20 @@ "VCores": "System.Nullable`1[System.Int32]", "AdministratorPassword": "System.Security.SecureString", "Location": "System.String", + "DnsZone": "System.String", "DnsZonePartner": "System.String", "TimezoneId": "System.String", "ProxyOverride": "System.String", "Collation": "System.String", "SubnetId": "System.String", - "DnsZone": "System.String", + "InstancePoolName": "System.String", "AdministratorLogin": "System.String", "FullyQualifiedDomainName": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", "Id": "System.String", "LicenseType": "System.String", - "InstancePoolName": "System.String" + "MinimalTlsVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -52097,19 +52454,20 @@ "VCores": "System.Nullable`1[System.Int32]", "AdministratorPassword": "System.Security.SecureString", "Location": "System.String", + "DnsZone": "System.String", "DnsZonePartner": "System.String", "TimezoneId": "System.String", "ProxyOverride": "System.String", "Collation": "System.String", "SubnetId": "System.String", - "DnsZone": "System.String", + "InstancePoolName": "System.String", "AdministratorLogin": "System.String", "FullyQualifiedDomainName": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", "Id": "System.String", "LicenseType": "System.String", - "InstancePoolName": "System.String" + "MinimalTlsVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -52410,19 +52768,20 @@ "VCores": "System.Nullable`1[System.Int32]", "AdministratorPassword": "System.Security.SecureString", "Location": "System.String", + "DnsZone": "System.String", "DnsZonePartner": "System.String", "TimezoneId": "System.String", "ProxyOverride": "System.String", "Collation": "System.String", "SubnetId": "System.String", - "DnsZone": "System.String", + "InstancePoolName": "System.String", "AdministratorLogin": "System.String", "FullyQualifiedDomainName": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", "Id": "System.String", "LicenseType": "System.String", - "InstancePoolName": "System.String" + "MinimalTlsVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -52485,19 +52844,20 @@ "VCores": "System.Nullable`1[System.Int32]", "AdministratorPassword": "System.Security.SecureString", "Location": "System.String", + "DnsZone": "System.String", "DnsZonePartner": "System.String", "TimezoneId": "System.String", "ProxyOverride": "System.String", "Collation": "System.String", "SubnetId": "System.String", - "DnsZone": "System.String", + "InstancePoolName": "System.String", "AdministratorLogin": "System.String", "FullyQualifiedDomainName": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", "Id": "System.String", "LicenseType": "System.String", - "InstancePoolName": "System.String" + "MinimalTlsVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -52785,6 +53145,29 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "MinimalTlsVersion", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "None", + "1.0", + "1.1", + "1.2" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "Force", "AliasList": [], @@ -52878,19 +53261,20 @@ "VCores": "System.Nullable`1[System.Int32]", "AdministratorPassword": "System.Security.SecureString", "Location": "System.String", + "DnsZone": "System.String", "DnsZonePartner": "System.String", "TimezoneId": "System.String", "ProxyOverride": "System.String", "Collation": "System.String", "SubnetId": "System.String", - "DnsZone": "System.String", + "InstancePoolName": "System.String", "AdministratorLogin": "System.String", "FullyQualifiedDomainName": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", "Id": "System.String", "LicenseType": "System.String", - "InstancePoolName": "System.String" + "MinimalTlsVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -53187,6 +53571,35 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "MinimalTlsVersion", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "None", + "1.0", + "1.1", + "1.2" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Force", @@ -53551,6 +53964,35 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "MinimalTlsVersion", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "None", + "1.0", + "1.1", + "1.2" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Force", @@ -53941,6 +54383,35 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "MinimalTlsVersion", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "None", + "1.0", + "1.1", + "1.2" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Force", @@ -54281,6 +54752,35 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "MinimalTlsVersion", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "None", + "1.0", + "1.1", + "1.2" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Force", @@ -54737,9 +55237,10 @@ "Name": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", + "LongTermRetentionBackupResourceId": "System.String", "RestorableDroppedDatabaseId": "System.String", "RecoverableDatabaseId": "System.String", - "FailoverGroupId": "System.String", + "SourceDatabaseId": "System.String", "StorageContainerSasToken": "System.String", "StorageContainerUri": "System.String", "CreateMode": "System.String", @@ -54747,7 +55248,7 @@ "DefaultSecondaryLocation": "System.String", "Status": "System.String", "Collation": "System.String", - "SourceDatabaseId": "System.String", + "FailoverGroupId": "System.String", "Id": "System.String" }, "ElementType": null, @@ -54905,19 +55406,20 @@ "VCores": "System.Nullable`1[System.Int32]", "AdministratorPassword": "System.Security.SecureString", "Location": "System.String", + "DnsZone": "System.String", "DnsZonePartner": "System.String", "TimezoneId": "System.String", "ProxyOverride": "System.String", "Collation": "System.String", "SubnetId": "System.String", - "DnsZone": "System.String", + "InstancePoolName": "System.String", "AdministratorLogin": "System.String", "FullyQualifiedDomainName": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", "Id": "System.String", "LicenseType": "System.String", - "InstancePoolName": "System.String" + "MinimalTlsVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -55258,19 +55760,20 @@ "VCores": "System.Nullable`1[System.Int32]", "AdministratorPassword": "System.Security.SecureString", "Location": "System.String", + "DnsZone": "System.String", "DnsZonePartner": "System.String", "TimezoneId": "System.String", "ProxyOverride": "System.String", "Collation": "System.String", "SubnetId": "System.String", - "DnsZone": "System.String", + "InstancePoolName": "System.String", "AdministratorLogin": "System.String", "FullyQualifiedDomainName": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", "Id": "System.String", "LicenseType": "System.String", - "InstancePoolName": "System.String" + "MinimalTlsVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -55431,9 +55934,10 @@ "Name": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", + "LongTermRetentionBackupResourceId": "System.String", "RestorableDroppedDatabaseId": "System.String", "RecoverableDatabaseId": "System.String", - "FailoverGroupId": "System.String", + "SourceDatabaseId": "System.String", "StorageContainerSasToken": "System.String", "StorageContainerUri": "System.String", "CreateMode": "System.String", @@ -55441,7 +55945,7 @@ "DefaultSecondaryLocation": "System.String", "Status": "System.String", "Collation": "System.String", - "SourceDatabaseId": "System.String", + "FailoverGroupId": "System.String", "Id": "System.String" }, "ElementType": null, @@ -55617,19 +56121,20 @@ "VCores": "System.Nullable`1[System.Int32]", "AdministratorPassword": "System.Security.SecureString", "Location": "System.String", + "DnsZone": "System.String", "DnsZonePartner": "System.String", "TimezoneId": "System.String", "ProxyOverride": "System.String", "Collation": "System.String", "SubnetId": "System.String", - "DnsZone": "System.String", + "InstancePoolName": "System.String", "AdministratorLogin": "System.String", "FullyQualifiedDomainName": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", "Id": "System.String", "LicenseType": "System.String", - "InstancePoolName": "System.String" + "MinimalTlsVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -56104,19 +56609,20 @@ "VCores": "System.Nullable`1[System.Int32]", "AdministratorPassword": "System.Security.SecureString", "Location": "System.String", + "DnsZone": "System.String", "DnsZonePartner": "System.String", "TimezoneId": "System.String", "ProxyOverride": "System.String", "Collation": "System.String", "SubnetId": "System.String", - "DnsZone": "System.String", + "InstancePoolName": "System.String", "AdministratorLogin": "System.String", "FullyQualifiedDomainName": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", "Id": "System.String", "LicenseType": "System.String", - "InstancePoolName": "System.String" + "MinimalTlsVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -56503,9 +57009,10 @@ "Name": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", + "LongTermRetentionBackupResourceId": "System.String", "RestorableDroppedDatabaseId": "System.String", "RecoverableDatabaseId": "System.String", - "FailoverGroupId": "System.String", + "SourceDatabaseId": "System.String", "StorageContainerSasToken": "System.String", "StorageContainerUri": "System.String", "CreateMode": "System.String", @@ -56513,7 +57020,7 @@ "DefaultSecondaryLocation": "System.String", "Status": "System.String", "Collation": "System.String", - "SourceDatabaseId": "System.String", + "FailoverGroupId": "System.String", "Id": "System.String" }, "ElementType": null, @@ -56651,9 +57158,10 @@ "Name": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", + "LongTermRetentionBackupResourceId": "System.String", "RestorableDroppedDatabaseId": "System.String", "RecoverableDatabaseId": "System.String", - "FailoverGroupId": "System.String", + "SourceDatabaseId": "System.String", "StorageContainerSasToken": "System.String", "StorageContainerUri": "System.String", "CreateMode": "System.String", @@ -56661,7 +57169,7 @@ "DefaultSecondaryLocation": "System.String", "Status": "System.String", "Collation": "System.String", - "SourceDatabaseId": "System.String", + "FailoverGroupId": "System.String", "Id": "System.String" }, "ElementType": null, @@ -56959,9 +57467,10 @@ "Name": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", + "LongTermRetentionBackupResourceId": "System.String", "RestorableDroppedDatabaseId": "System.String", "RecoverableDatabaseId": "System.String", - "FailoverGroupId": "System.String", + "SourceDatabaseId": "System.String", "StorageContainerSasToken": "System.String", "StorageContainerUri": "System.String", "CreateMode": "System.String", @@ -56969,7 +57478,7 @@ "DefaultSecondaryLocation": "System.String", "Status": "System.String", "Collation": "System.String", - "SourceDatabaseId": "System.String", + "FailoverGroupId": "System.String", "Id": "System.String" }, "ElementType": null, @@ -57289,9 +57798,10 @@ "Name": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", + "LongTermRetentionBackupResourceId": "System.String", "RestorableDroppedDatabaseId": "System.String", "RecoverableDatabaseId": "System.String", - "FailoverGroupId": "System.String", + "SourceDatabaseId": "System.String", "StorageContainerSasToken": "System.String", "StorageContainerUri": "System.String", "CreateMode": "System.String", @@ -57299,7 +57809,7 @@ "DefaultSecondaryLocation": "System.String", "Status": "System.String", "Collation": "System.String", - "SourceDatabaseId": "System.String", + "FailoverGroupId": "System.String", "Id": "System.String" }, "ElementType": null, @@ -57399,6 +57909,24 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "FromLongTermRetentionBackup", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "SubscriptionId", "AliasList": [ @@ -60396,16 +60924,16 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "LongTermRetentionBackupRestoreParameter", "Parameters": [ { "ParameterMetadata": { - "Name": "TargetInstanceDatabaseName", + "Name": "FromLongTermRetentionBackup", "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -60424,12 +60952,14 @@ }, { "ParameterMetadata": { - "Name": "AsJob", - "AliasList": [], + "Name": "SubscriptionId", + "AliasList": [ + "SourceSubscriptionId" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -60448,31 +60978,40 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "ResourceId", + "AliasList": [], "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - }, + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Clear", - "Parameters": [], - "ReturnType": "System.Void" - } - ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TargetInstanceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -60480,198 +61019,14 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ], - "AliasList": [] - }, - { - "VerbName": "Get", - "NounName": "AzSqlDeletedInstanceDatabaseBackup", - "Name": "Get-AzSqlDeletedInstanceDatabaseBackup", - "ClassName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Cmdlet.GetAzureSqlDeletedManagedDatabaseBackup", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "DeletedDatabaseList", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model", - "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlDeletedManagedDatabaseBackupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlDeletedManagedDatabaseBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", - "Properties": { - "DeletionDate": "System.DateTime", - "CreationDate": "System.Nullable`1[System.DateTime]", - "EarliestRestorePoint": "System.Nullable`1[System.DateTime]", - "ResourceGroupName": "System.String", - "ManagedInstanceName": "System.String", - "Name": "System.String", - "Id": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [ - { - "Name": "", - "ReturnType": null, - "Parameters": [] - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "InstanceName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DatabaseName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DeletionDate", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.DateTime]", - "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "System.DateTime" - ], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Clear", - "Parameters": [], - "ReturnType": "System.Void" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "TargetResourceGroupName", "AliasList": [], "Type": { "Namespace": "System", @@ -60686,16 +61041,16 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, - "Position": 0, + "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "InstanceName", + "Name": "TargetInstanceDatabaseName", "AliasList": [], "Type": { "Namespace": "System", @@ -60710,10 +61065,397 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, - "Position": 1, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "TargetInstanceDatabaseName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Get", + "NounName": "AzSqlDeletedInstanceDatabaseBackup", + "Name": "Get-AzSqlDeletedInstanceDatabaseBackup", + "ClassName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Cmdlet.GetAzureSqlDeletedManagedDatabaseBackup", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "DeletedDatabaseList", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model", + "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlDeletedManagedDatabaseBackupModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlDeletedManagedDatabaseBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "DeletionDate": "System.DateTime", + "CreationDate": "System.Nullable`1[System.DateTime]", + "EarliestRestorePoint": "System.Nullable`1[System.DateTime]", + "ResourceGroupName": "System.String", + "ManagedInstanceName": "System.String", + "Name": "System.String", + "Id": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "InstanceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DatabaseName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DeletionDate", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.DateTime]", + "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.DateTime" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "InstanceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, @@ -61019,6 +61761,284 @@ ], "AliasList": [] }, + { + "VerbName": "Get", + "NounName": "AzSqlInstanceDatabaseBackupLongTermRetentionPolicy", + "Name": "Get-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy", + "ClassName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Cmdlet.GetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model", + "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "WeekOfYear": "System.Nullable`1[System.Int32]", + "ResourceGroupName": "System.String", + "ManagedInstanceName": "System.String", + "DatabaseName": "System.String", + "WeeklyRetention": "System.String", + "MonthlyRetention": "System.String", + "YearlyRetention": "System.String", + "Location": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "InstanceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DatabaseName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InstanceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DatabaseName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [ + "Get-AzSqlInstanceDatabaseLongTermRetentionPolicy" + ] + }, { "VerbName": "Get", "NounName": "AzSqlInstanceDatabaseBackupShortTermRetentionPolicy", @@ -61391,11 +62411,3215 @@ ] }, { - "Name": "PolicyByResourceIdSet", + "Name": "PolicyByResourceIdSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "PolicyByResourceInstanceDatabaseSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "InstanceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DatabaseName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeletionDate", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.DateTime]", + "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.DateTime" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Get", + "NounName": "AzSqlInstanceDatabaseLongTermRetentionBackup", + "Name": "Get-AzSqlInstanceDatabaseLongTermRetentionBackup", + "ClassName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Cmdlet.GetAzureSqlManagedDatabaseLongTermRetentionBackup", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "Location", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model", + "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "BackupExpirationTime": "System.Nullable`1[System.DateTime]", + "BackupTime": "System.Nullable`1[System.DateTime]", + "DatabaseDeletionTime": "System.Nullable`1[System.DateTime]", + "InstanceCreateTime": "System.Nullable`1[System.DateTime]", + "BackupName": "System.String", + "DatabaseName": "System.String", + "Location": "System.String", + "ResourceId": "System.String", + "ManagedInstanceName": "System.String", + "ResourceGroupName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Location", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", + "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", + "CreationDate": "System.Nullable`1[System.DateTime]", + "RestorePointInTime": "System.Nullable`1[System.DateTime]", + "EarliestRestorePoint": "System.Nullable`1[System.DateTime]", + "Location": "System.String", + "Name": "System.String", + "ManagedInstanceName": "System.String", + "ResourceGroupName": "System.String", + "LongTermRetentionBackupResourceId": "System.String", + "RestorableDroppedDatabaseId": "System.String", + "RecoverableDatabaseId": "System.String", + "SourceDatabaseId": "System.String", + "StorageContainerSasToken": "System.String", + "StorageContainerUri": "System.String", + "CreateMode": "System.String", + "CatalogCollation": "System.String", + "DefaultSecondaryLocation": "System.String", + "Status": "System.String", + "Collation": "System.String", + "FailoverGroupId": "System.String", + "Id": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "resourceGroup", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "managedInstanceName", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "database", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InstanceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DatabaseName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "BackupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "OnlyLatestPerDatabase", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DatabaseState", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "All", + "Deleted", + "Live" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "Location", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Location", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "OnlyLatestPerDatabase", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DatabaseState", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "All", + "Deleted", + "Live" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "InstanceName", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Location", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "InstanceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "OnlyLatestPerDatabase", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DatabaseState", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "All", + "Deleted", + "Live" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "DatabaseName", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Location", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "InstanceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DatabaseName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "OnlyLatestPerDatabase", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "BackupName", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Location", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "InstanceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DatabaseName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BackupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 3, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "GetBackupByResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Location", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "GetBackupByInputObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", + "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", + "CreationDate": "System.Nullable`1[System.DateTime]", + "RestorePointInTime": "System.Nullable`1[System.DateTime]", + "EarliestRestorePoint": "System.Nullable`1[System.DateTime]", + "Location": "System.String", + "Name": "System.String", + "ManagedInstanceName": "System.String", + "ResourceGroupName": "System.String", + "LongTermRetentionBackupResourceId": "System.String", + "RestorableDroppedDatabaseId": "System.String", + "RecoverableDatabaseId": "System.String", + "SourceDatabaseId": "System.String", + "StorageContainerSasToken": "System.String", + "StorageContainerUri": "System.String", + "CreateMode": "System.String", + "CatalogCollation": "System.String", + "DefaultSecondaryLocation": "System.String", + "Status": "System.String", + "Collation": "System.String", + "FailoverGroupId": "System.String", + "Id": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "resourceGroup", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "managedInstanceName", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "database", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BackupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "GetBackupsByInputObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", + "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", + "CreationDate": "System.Nullable`1[System.DateTime]", + "RestorePointInTime": "System.Nullable`1[System.DateTime]", + "EarliestRestorePoint": "System.Nullable`1[System.DateTime]", + "Location": "System.String", + "Name": "System.String", + "ManagedInstanceName": "System.String", + "ResourceGroupName": "System.String", + "LongTermRetentionBackupResourceId": "System.String", + "RestorableDroppedDatabaseId": "System.String", + "RecoverableDatabaseId": "System.String", + "SourceDatabaseId": "System.String", + "StorageContainerSasToken": "System.String", + "StorageContainerUri": "System.String", + "CreateMode": "System.String", + "CatalogCollation": "System.String", + "DefaultSecondaryLocation": "System.String", + "Status": "System.String", + "Collation": "System.String", + "FailoverGroupId": "System.String", + "Id": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "resourceGroup", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "managedInstanceName", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "database", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "OnlyLatestPerDatabase", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DatabaseState", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "All", + "Deleted", + "Live" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Remove", + "NounName": "AzSqlInstanceDatabaseLongTermRetentionBackup", + "Name": "Remove-AzSqlInstanceDatabaseLongTermRetentionBackup", + "ClassName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Cmdlet.RemoveAzureSqlManagedDatabaseLongTermRetentionBackup", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "RemoveBackupDefault", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model", + "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "BackupExpirationTime": "System.Nullable`1[System.DateTime]", + "BackupTime": "System.Nullable`1[System.DateTime]", + "DatabaseDeletionTime": "System.Nullable`1[System.DateTime]", + "InstanceCreateTime": "System.Nullable`1[System.DateTime]", + "BackupName": "System.String", + "DatabaseName": "System.String", + "Location": "System.String", + "ResourceId": "System.String", + "ManagedInstanceName": "System.String", + "ResourceGroupName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Location", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "InstanceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DatabaseName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model", + "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "BackupExpirationTime": "System.Nullable`1[System.DateTime]", + "BackupTime": "System.Nullable`1[System.DateTime]", + "DatabaseDeletionTime": "System.Nullable`1[System.DateTime]", + "InstanceCreateTime": "System.Nullable`1[System.DateTime]", + "BackupName": "System.String", + "DatabaseName": "System.String", + "Location": "System.String", + "ResourceId": "System.String", + "ManagedInstanceName": "System.String", + "ResourceGroupName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "BackupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Force", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "RemoveBackupDefault", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Location", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "InstanceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DatabaseName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BackupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 3, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "RemoveBackupByInputObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model", + "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "BackupExpirationTime": "System.Nullable`1[System.DateTime]", + "BackupTime": "System.Nullable`1[System.DateTime]", + "DatabaseDeletionTime": "System.Nullable`1[System.DateTime]", + "InstanceCreateTime": "System.Nullable`1[System.DateTime]", + "BackupName": "System.String", + "DatabaseName": "System.String", + "Location": "System.String", + "ResourceId": "System.String", + "ManagedInstanceName": "System.String", + "ResourceGroupName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "RemoveBackupByResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Force", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Force", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Set", + "NounName": "AzSqlInstanceDatabaseBackupLongTermRetentionPolicy", + "Name": "Set-AzSqlInstanceDatabaseBackupLongTermRetentionPolicy", + "ClassName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Cmdlet.SetAzureSqlManagedDatabaseBackupLongTermRetentionPolicy", + "SupportsShouldProcess": true, + "ConfirmImpact": 1, + "SupportsPaging": false, + "DefaultParameterSetName": "WeeklyRetentionRequired", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model", + "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "WeekOfYear": "System.Nullable`1[System.Int32]", + "ResourceGroupName": "System.String", + "ManagedInstanceName": "System.String", + "DatabaseName": "System.String", + "WeeklyRetention": "System.String", + "MonthlyRetention": "System.String", + "YearlyRetention": "System.String", + "Location": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "RemovePolicy", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "WeeklyRetention", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "MonthlyRetention", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "YearlyRetention", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "WeekOfYear", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "InstanceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DatabaseName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "RemovePolicy", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "RemovePolicy", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "InstanceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DatabaseName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "WeeklyRetentionRequired", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "WeeklyRetention", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "InstanceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DatabaseName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "MonthlyRetentionRequired", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "WeeklyRetention", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "MonthlyRetention", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "InstanceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DatabaseName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "YearlyRetentionRequired", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "WeeklyRetention", "AliasList": [], "Type": { "Namespace": "System", @@ -61412,58 +65636,38 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "MonthlyRetention", + "AliasList": [], "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - }, + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Clear", - "Parameters": [], - "ReturnType": "System.Void" - } - ], + "Methods": [], "Constructors": [] }, "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "PolicyByResourceInstanceDatabaseSet", - "Parameters": [ + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "YearlyRetention", "AliasList": [], "Type": { "Namespace": "System", @@ -61481,9 +65685,33 @@ "ValidateNotNullOrEmpty": true }, "Mandatory": true, - "Position": 0, + "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "WeekOfYear", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -61507,7 +65735,7 @@ "Mandatory": true, "Position": 1, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -61531,21 +65759,19 @@ "Mandatory": true, "Position": 2, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DeletionDate", + "Name": "ResourceGroupName", "AliasList": [], "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.DateTime]", - "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, - "GenericTypeArguments": [ - "System.DateTime" - ], + "GenericTypeArguments": [], "Methods": [], "Constructors": [] }, @@ -61554,10 +65780,10 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, - "Position": -2147483648, + "Mandatory": true, + "Position": 0, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -61603,6 +65829,78 @@ { "Name": "__AllParameterSets", "Parameters": [ + { + "ParameterMetadata": { + "Name": "InstanceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DatabaseName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -61645,7 +65943,9 @@ ] } ], - "AliasList": [] + "AliasList": [ + "Set-AzSqlInstanceDatabaseLongTermRetentionPolicy" + ] }, { "VerbName": "Get", @@ -62219,19 +66519,20 @@ "VCores": "System.Nullable`1[System.Int32]", "AdministratorPassword": "System.Security.SecureString", "Location": "System.String", + "DnsZone": "System.String", "DnsZonePartner": "System.String", "TimezoneId": "System.String", "ProxyOverride": "System.String", "Collation": "System.String", "SubnetId": "System.String", - "DnsZone": "System.String", + "InstancePoolName": "System.String", "AdministratorLogin": "System.String", "FullyQualifiedDomainName": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", "Id": "System.String", "LicenseType": "System.String", - "InstancePoolName": "System.String" + "MinimalTlsVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -62384,19 +66685,20 @@ "VCores": "System.Nullable`1[System.Int32]", "AdministratorPassword": "System.Security.SecureString", "Location": "System.String", + "DnsZone": "System.String", "DnsZonePartner": "System.String", "TimezoneId": "System.String", "ProxyOverride": "System.String", "Collation": "System.String", "SubnetId": "System.String", - "DnsZone": "System.String", + "InstancePoolName": "System.String", "AdministratorLogin": "System.String", "FullyQualifiedDomainName": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", "Id": "System.String", "LicenseType": "System.String", - "InstancePoolName": "System.String" + "MinimalTlsVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -62809,19 +67111,20 @@ "VCores": "System.Nullable`1[System.Int32]", "AdministratorPassword": "System.Security.SecureString", "Location": "System.String", + "DnsZone": "System.String", "DnsZonePartner": "System.String", "TimezoneId": "System.String", "ProxyOverride": "System.String", "Collation": "System.String", "SubnetId": "System.String", - "DnsZone": "System.String", + "InstancePoolName": "System.String", "AdministratorLogin": "System.String", "FullyQualifiedDomainName": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", "Id": "System.String", "LicenseType": "System.String", - "InstancePoolName": "System.String" + "MinimalTlsVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -63066,19 +67369,20 @@ "VCores": "System.Nullable`1[System.Int32]", "AdministratorPassword": "System.Security.SecureString", "Location": "System.String", + "DnsZone": "System.String", "DnsZonePartner": "System.String", "TimezoneId": "System.String", "ProxyOverride": "System.String", "Collation": "System.String", "SubnetId": "System.String", - "DnsZone": "System.String", + "InstancePoolName": "System.String", "AdministratorLogin": "System.String", "FullyQualifiedDomainName": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", "Id": "System.String", "LicenseType": "System.String", - "InstancePoolName": "System.String" + "MinimalTlsVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -63591,19 +67895,20 @@ "VCores": "System.Nullable`1[System.Int32]", "AdministratorPassword": "System.Security.SecureString", "Location": "System.String", + "DnsZone": "System.String", "DnsZonePartner": "System.String", "TimezoneId": "System.String", "ProxyOverride": "System.String", "Collation": "System.String", "SubnetId": "System.String", - "DnsZone": "System.String", + "InstancePoolName": "System.String", "AdministratorLogin": "System.String", "FullyQualifiedDomainName": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", "Id": "System.String", "LicenseType": "System.String", - "InstancePoolName": "System.String" + "MinimalTlsVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -63848,19 +68153,20 @@ "VCores": "System.Nullable`1[System.Int32]", "AdministratorPassword": "System.Security.SecureString", "Location": "System.String", + "DnsZone": "System.String", "DnsZonePartner": "System.String", "TimezoneId": "System.String", "ProxyOverride": "System.String", "Collation": "System.String", "SubnetId": "System.String", - "DnsZone": "System.String", + "InstancePoolName": "System.String", "AdministratorLogin": "System.String", "FullyQualifiedDomainName": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", "Id": "System.String", "LicenseType": "System.String", - "InstancePoolName": "System.String" + "MinimalTlsVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -83295,6 +87601,7 @@ "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", "ResourceId": "System.String", + "MinimalTlsVersion": "System.String", "PublicNetworkAccess": "System.String" }, "ElementType": null, @@ -83570,6 +87877,7 @@ "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", "ResourceId": "System.String", + "MinimalTlsVersion": "System.String", "PublicNetworkAccess": "System.String" }, "ElementType": null, @@ -121139,9 +125447,10 @@ "Name": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", + "LongTermRetentionBackupResourceId": "System.String", "RestorableDroppedDatabaseId": "System.String", "RecoverableDatabaseId": "System.String", - "FailoverGroupId": "System.String", + "SourceDatabaseId": "System.String", "StorageContainerSasToken": "System.String", "StorageContainerUri": "System.String", "CreateMode": "System.String", @@ -121149,7 +125458,7 @@ "DefaultSecondaryLocation": "System.String", "Status": "System.String", "Collation": "System.String", - "SourceDatabaseId": "System.String", + "FailoverGroupId": "System.String", "Id": "System.String" }, "ElementType": null, @@ -121748,9 +126057,10 @@ "Name": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", + "LongTermRetentionBackupResourceId": "System.String", "RestorableDroppedDatabaseId": "System.String", "RecoverableDatabaseId": "System.String", - "FailoverGroupId": "System.String", + "SourceDatabaseId": "System.String", "StorageContainerSasToken": "System.String", "StorageContainerUri": "System.String", "CreateMode": "System.String", @@ -121758,7 +126068,7 @@ "DefaultSecondaryLocation": "System.String", "Status": "System.String", "Collation": "System.String", - "SourceDatabaseId": "System.String", + "FailoverGroupId": "System.String", "Id": "System.String" }, "ElementType": null, @@ -123387,9 +127697,10 @@ "Name": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", + "LongTermRetentionBackupResourceId": "System.String", "RestorableDroppedDatabaseId": "System.String", "RecoverableDatabaseId": "System.String", - "FailoverGroupId": "System.String", + "SourceDatabaseId": "System.String", "StorageContainerSasToken": "System.String", "StorageContainerUri": "System.String", "CreateMode": "System.String", @@ -123397,7 +127708,7 @@ "DefaultSecondaryLocation": "System.String", "Status": "System.String", "Collation": "System.String", - "SourceDatabaseId": "System.String", + "FailoverGroupId": "System.String", "Id": "System.String" }, "ElementType": null, @@ -123996,9 +128307,10 @@ "Name": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", + "LongTermRetentionBackupResourceId": "System.String", "RestorableDroppedDatabaseId": "System.String", "RecoverableDatabaseId": "System.String", - "FailoverGroupId": "System.String", + "SourceDatabaseId": "System.String", "StorageContainerSasToken": "System.String", "StorageContainerUri": "System.String", "CreateMode": "System.String", @@ -124006,7 +128318,7 @@ "DefaultSecondaryLocation": "System.String", "Status": "System.String", "Collation": "System.String", - "SourceDatabaseId": "System.String", + "FailoverGroupId": "System.String", "Id": "System.String" }, "ElementType": null, @@ -126368,9 +130680,10 @@ "Name": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", + "LongTermRetentionBackupResourceId": "System.String", "RestorableDroppedDatabaseId": "System.String", "RecoverableDatabaseId": "System.String", - "FailoverGroupId": "System.String", + "SourceDatabaseId": "System.String", "StorageContainerSasToken": "System.String", "StorageContainerUri": "System.String", "CreateMode": "System.String", @@ -126378,7 +130691,7 @@ "DefaultSecondaryLocation": "System.String", "Status": "System.String", "Collation": "System.String", - "SourceDatabaseId": "System.String", + "FailoverGroupId": "System.String", "Id": "System.String" }, "ElementType": null, @@ -126920,9 +131233,10 @@ "Name": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", + "LongTermRetentionBackupResourceId": "System.String", "RestorableDroppedDatabaseId": "System.String", "RecoverableDatabaseId": "System.String", - "FailoverGroupId": "System.String", + "SourceDatabaseId": "System.String", "StorageContainerSasToken": "System.String", "StorageContainerUri": "System.String", "CreateMode": "System.String", @@ -126930,7 +131244,7 @@ "DefaultSecondaryLocation": "System.String", "Status": "System.String", "Collation": "System.String", - "SourceDatabaseId": "System.String", + "FailoverGroupId": "System.String", "Id": "System.String" }, "ElementType": null, @@ -127083,9 +131397,10 @@ "Name": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", + "LongTermRetentionBackupResourceId": "System.String", "RestorableDroppedDatabaseId": "System.String", "RecoverableDatabaseId": "System.String", - "FailoverGroupId": "System.String", + "SourceDatabaseId": "System.String", "StorageContainerSasToken": "System.String", "StorageContainerUri": "System.String", "CreateMode": "System.String", @@ -127093,7 +131408,7 @@ "DefaultSecondaryLocation": "System.String", "Status": "System.String", "Collation": "System.String", - "SourceDatabaseId": "System.String", + "FailoverGroupId": "System.String", "Id": "System.String" }, "ElementType": null, @@ -127503,9 +131818,10 @@ "Name": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", + "LongTermRetentionBackupResourceId": "System.String", "RestorableDroppedDatabaseId": "System.String", "RecoverableDatabaseId": "System.String", - "FailoverGroupId": "System.String", + "SourceDatabaseId": "System.String", "StorageContainerSasToken": "System.String", "StorageContainerUri": "System.String", "CreateMode": "System.String", @@ -127513,7 +131829,7 @@ "DefaultSecondaryLocation": "System.String", "Status": "System.String", "Collation": "System.String", - "SourceDatabaseId": "System.String", + "FailoverGroupId": "System.String", "Id": "System.String" }, "ElementType": null, @@ -127789,9 +132105,10 @@ "Name": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", + "LongTermRetentionBackupResourceId": "System.String", "RestorableDroppedDatabaseId": "System.String", "RecoverableDatabaseId": "System.String", - "FailoverGroupId": "System.String", + "SourceDatabaseId": "System.String", "StorageContainerSasToken": "System.String", "StorageContainerUri": "System.String", "CreateMode": "System.String", @@ -127799,7 +132116,7 @@ "DefaultSecondaryLocation": "System.String", "Status": "System.String", "Collation": "System.String", - "SourceDatabaseId": "System.String", + "FailoverGroupId": "System.String", "Id": "System.String" }, "ElementType": null, @@ -129302,9 +133619,10 @@ "Name": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", + "LongTermRetentionBackupResourceId": "System.String", "RestorableDroppedDatabaseId": "System.String", "RecoverableDatabaseId": "System.String", - "FailoverGroupId": "System.String", + "SourceDatabaseId": "System.String", "StorageContainerSasToken": "System.String", "StorageContainerUri": "System.String", "CreateMode": "System.String", @@ -129312,7 +133630,7 @@ "DefaultSecondaryLocation": "System.String", "Status": "System.String", "Collation": "System.String", - "SourceDatabaseId": "System.String", + "FailoverGroupId": "System.String", "Id": "System.String" }, "ElementType": null, @@ -129909,9 +134227,10 @@ "Name": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", + "LongTermRetentionBackupResourceId": "System.String", "RestorableDroppedDatabaseId": "System.String", "RecoverableDatabaseId": "System.String", - "FailoverGroupId": "System.String", + "SourceDatabaseId": "System.String", "StorageContainerSasToken": "System.String", "StorageContainerUri": "System.String", "CreateMode": "System.String", @@ -129919,7 +134238,7 @@ "DefaultSecondaryLocation": "System.String", "Status": "System.String", "Collation": "System.String", - "SourceDatabaseId": "System.String", + "FailoverGroupId": "System.String", "Id": "System.String" }, "ElementType": null, @@ -131710,9 +136029,10 @@ "Name": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", + "LongTermRetentionBackupResourceId": "System.String", "RestorableDroppedDatabaseId": "System.String", "RecoverableDatabaseId": "System.String", - "FailoverGroupId": "System.String", + "SourceDatabaseId": "System.String", "StorageContainerSasToken": "System.String", "StorageContainerUri": "System.String", "CreateMode": "System.String", @@ -131720,7 +136040,7 @@ "DefaultSecondaryLocation": "System.String", "Status": "System.String", "Collation": "System.String", - "SourceDatabaseId": "System.String", + "FailoverGroupId": "System.String", "Id": "System.String" }, "ElementType": null, @@ -132260,9 +136580,10 @@ "Name": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", + "LongTermRetentionBackupResourceId": "System.String", "RestorableDroppedDatabaseId": "System.String", "RecoverableDatabaseId": "System.String", - "FailoverGroupId": "System.String", + "SourceDatabaseId": "System.String", "StorageContainerSasToken": "System.String", "StorageContainerUri": "System.String", "CreateMode": "System.String", @@ -132270,7 +136591,7 @@ "DefaultSecondaryLocation": "System.String", "Status": "System.String", "Collation": "System.String", - "SourceDatabaseId": "System.String", + "FailoverGroupId": "System.String", "Id": "System.String" }, "ElementType": null, @@ -163752,6 +168073,7 @@ "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", "ResourceId": "System.String", + "MinimalTlsVersion": "System.String", "PublicNetworkAccess": "System.String" }, "ElementType": null, @@ -163987,6 +168309,7 @@ "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", "ResourceId": "System.String", + "MinimalTlsVersion": "System.String", "PublicNetworkAccess": "System.String" }, "ElementType": null, @@ -164814,6 +169137,7 @@ "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", "ResourceId": "System.String", + "MinimalTlsVersion": "System.String", "PublicNetworkAccess": "System.String" }, "ElementType": null, @@ -165049,6 +169373,7 @@ "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", "ResourceId": "System.String", + "MinimalTlsVersion": "System.String", "PublicNetworkAccess": "System.String" }, "ElementType": null, @@ -167332,6 +171657,7 @@ "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", "ResourceId": "System.String", + "MinimalTlsVersion": "System.String", "PublicNetworkAccess": "System.String" }, "ElementType": null, @@ -168239,6 +172565,7 @@ "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", "ResourceId": "System.String", + "MinimalTlsVersion": "System.String", "PublicNetworkAccess": "System.String" }, "ElementType": null, @@ -171457,19 +175784,20 @@ "VCores": "System.Nullable`1[System.Int32]", "AdministratorPassword": "System.Security.SecureString", "Location": "System.String", + "DnsZone": "System.String", "DnsZonePartner": "System.String", "TimezoneId": "System.String", "ProxyOverride": "System.String", "Collation": "System.String", "SubnetId": "System.String", - "DnsZone": "System.String", + "InstancePoolName": "System.String", "AdministratorLogin": "System.String", "FullyQualifiedDomainName": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", "Id": "System.String", "LicenseType": "System.String", - "InstancePoolName": "System.String" + "MinimalTlsVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -171604,19 +175932,20 @@ "VCores": "System.Nullable`1[System.Int32]", "AdministratorPassword": "System.Security.SecureString", "Location": "System.String", + "DnsZone": "System.String", "DnsZonePartner": "System.String", "TimezoneId": "System.String", "ProxyOverride": "System.String", "Collation": "System.String", "SubnetId": "System.String", - "DnsZone": "System.String", + "InstancePoolName": "System.String", "AdministratorLogin": "System.String", "FullyQualifiedDomainName": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", "Id": "System.String", "LicenseType": "System.String", - "InstancePoolName": "System.String" + "MinimalTlsVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -171930,6 +176259,7 @@ "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", "ResourceId": "System.String", + "MinimalTlsVersion": "System.String", "PublicNetworkAccess": "System.String" }, "ElementType": null, @@ -172067,6 +176397,7 @@ "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", "ResourceId": "System.String", + "MinimalTlsVersion": "System.String", "PublicNetworkAccess": "System.String" }, "ElementType": null, @@ -172435,19 +176766,20 @@ "VCores": "System.Nullable`1[System.Int32]", "AdministratorPassword": "System.Security.SecureString", "Location": "System.String", + "DnsZone": "System.String", "DnsZonePartner": "System.String", "TimezoneId": "System.String", "ProxyOverride": "System.String", "Collation": "System.String", "SubnetId": "System.String", - "DnsZone": "System.String", + "InstancePoolName": "System.String", "AdministratorLogin": "System.String", "FullyQualifiedDomainName": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", "Id": "System.String", "LicenseType": "System.String", - "InstancePoolName": "System.String" + "MinimalTlsVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -172746,19 +177078,20 @@ "VCores": "System.Nullable`1[System.Int32]", "AdministratorPassword": "System.Security.SecureString", "Location": "System.String", + "DnsZone": "System.String", "DnsZonePartner": "System.String", "TimezoneId": "System.String", "ProxyOverride": "System.String", "Collation": "System.String", "SubnetId": "System.String", - "DnsZone": "System.String", + "InstancePoolName": "System.String", "AdministratorLogin": "System.String", "FullyQualifiedDomainName": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", "Id": "System.String", "LicenseType": "System.String", - "InstancePoolName": "System.String" + "MinimalTlsVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -173106,6 +177439,7 @@ "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", "ResourceId": "System.String", + "MinimalTlsVersion": "System.String", "PublicNetworkAccess": "System.String" }, "ElementType": null, @@ -173407,6 +177741,7 @@ "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", "ResourceId": "System.String", + "MinimalTlsVersion": "System.String", "PublicNetworkAccess": "System.String" }, "ElementType": null, @@ -173701,19 +178036,20 @@ "VCores": "System.Nullable`1[System.Int32]", "AdministratorPassword": "System.Security.SecureString", "Location": "System.String", + "DnsZone": "System.String", "DnsZonePartner": "System.String", "TimezoneId": "System.String", "ProxyOverride": "System.String", "Collation": "System.String", "SubnetId": "System.String", - "DnsZone": "System.String", + "InstancePoolName": "System.String", "AdministratorLogin": "System.String", "FullyQualifiedDomainName": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", "Id": "System.String", "LicenseType": "System.String", - "InstancePoolName": "System.String" + "MinimalTlsVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -173848,19 +178184,20 @@ "VCores": "System.Nullable`1[System.Int32]", "AdministratorPassword": "System.Security.SecureString", "Location": "System.String", + "DnsZone": "System.String", "DnsZonePartner": "System.String", "TimezoneId": "System.String", "ProxyOverride": "System.String", "Collation": "System.String", "SubnetId": "System.String", - "DnsZone": "System.String", + "InstancePoolName": "System.String", "AdministratorLogin": "System.String", "FullyQualifiedDomainName": "System.String", "ManagedInstanceName": "System.String", "ResourceGroupName": "System.String", "Id": "System.String", "LicenseType": "System.String", - "InstancePoolName": "System.String" + "MinimalTlsVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -174174,6 +178511,7 @@ "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", "ResourceId": "System.String", + "MinimalTlsVersion": "System.String", "PublicNetworkAccess": "System.String" }, "ElementType": null, @@ -174311,6 +178649,7 @@ "ServerVersion": "System.String", "FullyQualifiedDomainName": "System.String", "ResourceId": "System.String", + "MinimalTlsVersion": "System.String", "PublicNetworkAccess": "System.String" }, "ElementType": null, From 0b029e83915438dc36dbe844ea3f594a81cfebc3 Mon Sep 17 00:00:00 2001 From: "dixue@microsoft.com" Date: Fri, 6 Mar 2020 15:56:12 +0800 Subject: [PATCH 60/61] For final RC --- ChangeLog.md | 2 +- src/Websites/Websites/Az.Websites.psd1 | 2 +- src/Websites/Websites/ChangeLog.md | 2 +- tools/Az/Az.psd1 | 6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index a0dc13dfca5d..1e4e5300955e 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -76,7 +76,7 @@ #### Az.Websites * Added Tag parameter for 'New-AzAppServicePlan' and 'Set-AzAppServicePlan' -* Stop cmdlt execution if an exception is thrown when adding a custom domain to a website +* Stop cmdlet execution if an exception is thrown when adding a custom domain to a website * Added support to perform operations for App Services not in the same resource group as the App Service Plan * Applied access restriction to WebApp/Function in different resource groups * Fixed issue to set custom hostnames for WebAppSlots diff --git a/src/Websites/Websites/Az.Websites.psd1 b/src/Websites/Websites/Az.Websites.psd1 index 54607156ae09..f94c8369007d 100644 --- a/src/Websites/Websites/Az.Websites.psd1 +++ b/src/Websites/Websites/Az.Websites.psd1 @@ -137,7 +137,7 @@ PrivateData = @{ # ReleaseNotes of this module ReleaseNotes = '* Added Tag parameter for ''New-AzAppServicePlan'' and ''Set-AzAppServicePlan'' -* Stop cmdlt execution if an exception is thrown when adding a custom domain to a website +* Stop cmdlet execution if an exception is thrown when adding a custom domain to a website * Added support to perform operations for App Services not in the same resource group as the App Service Plan * Applied access restriction to WebApp/Function in different resource groups * Fixed issue to set custom hostnames for WebAppSlots' diff --git a/src/Websites/Websites/ChangeLog.md b/src/Websites/Websites/ChangeLog.md index 955306dce606..d2529dbd8745 100644 --- a/src/Websites/Websites/ChangeLog.md +++ b/src/Websites/Websites/ChangeLog.md @@ -21,7 +21,7 @@ ## Version 1.7.0 * Added Tag parameter for `New-AzAppServicePlan` and `Set-AzAppServicePlan` -* Stop cmdlt execution if an exception is thrown when adding a custom domain to a website +* Stop cmdlet execution if an exception is thrown when adding a custom domain to a website * Added support to perform operations for App Services not in the same resource group as the App Service Plan * Applied access restriction to WebApp/Function in different resource groups * Fixed issue to set custom hostnames for WebAppSlots diff --git a/tools/Az/Az.psd1 b/tools/Az/Az.psd1 index 322ca986a1c7..bc66c9d540da 100644 --- a/tools/Az/Az.psd1 +++ b/tools/Az/Az.psd1 @@ -31,7 +31,7 @@ Copyright = 'Microsoft Corporation. All rights reserved.' # Description of the functionality provided by this module Description = 'Microsoft Azure PowerShell - Cmdlets to manage resources in Azure. This module is compatible with WindowsPowerShell and PowerShell Core. - For more information about the Az module, please visit the following: https://docs.microsoft.com/en-us/powershell/azure/' +For more information about the Az module, please visit the following: https://docs.microsoft.com/en-us/powershell/azure/' # Minimum version of the PowerShell engine required by this module PowerShellVersion = '5.1' @@ -161,7 +161,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '3.7.0 - March 2020 + ReleaseNotes = '3.6.0 - March 2020 Az.Accounts * Open Azure PowerShell survey page in ''Send-Feedback'' [#11020] * Display Azure PowerShell survey URL in ''Resolve-Error'' [#11021] @@ -239,7 +239,7 @@ Az.Storage Az.Websites * Added Tag parameter for ''New-AzAppServicePlan'' and ''Set-AzAppServicePlan'' -* Stop cmdlt execution if an exception is thrown when adding a custom domain to a website +* Stop cmdlet execution if an exception is thrown when adding a custom domain to a website * Added support to perform operations for App Services not in the same resource group as the App Service Plan * Applied access restriction to WebApp/Function in different resource groups * Fixed issue to set custom hostnames for WebAppSlots From ac7133537933b7e71a9463c9bb556777b940e2a4 Mon Sep 17 00:00:00 2001 From: "dixue@microsoft.com" Date: Fri, 6 Mar 2020 16:13:07 +0800 Subject: [PATCH 61/61] For final RC --- ChangeLog.md | 2 +- tools/Az/Az.psd1 | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 1e4e5300955e..0b33bb8ca12a 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,4 +1,4 @@ -## 3.6.0 - March 2020 +## 3.6.1 - March 2020 #### Az.Accounts * Open Azure PowerShell survey page in 'Send-Feedback' [#11020] * Display Azure PowerShell survey URL in 'Resolve-Error' [#11021] diff --git a/tools/Az/Az.psd1 b/tools/Az/Az.psd1 index bc66c9d540da..79ca5b0d4506 100644 --- a/tools/Az/Az.psd1 +++ b/tools/Az/Az.psd1 @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '3.6.0' +ModuleVersion = '3.6.1' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -161,7 +161,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '3.6.0 - March 2020 + ReleaseNotes = '3.6.1 - March 2020 Az.Accounts * Open Azure PowerShell survey page in ''Send-Feedback'' [#11020] * Display Azure PowerShell survey URL in ''Resolve-Error'' [#11021]